test_allowlist.py 201 B

12345678910
  1. from disposable_email_domains import allowlist
  2. def test_allowlist_inclusion():
  3. assert 'spamcannon.com' in allowlist
  4. def test_allowlist_exclusion():
  5. assert 'spamcowboy.com' not in allowlist