test_blocklist.py 201 B

12345678910
  1. from disposable_email_domains import blocklist
  2. def test_blocklist_inclusion():
  3. assert 'spamcowboy.com' in blocklist
  4. def test_blocklist_exclusion():
  5. assert 'spamcannon.com' not in blocklist