aboutsummaryrefslogtreecommitdiff
path: root/tests/library/email/basic.test.py
diff options
context:
space:
mode:
authornatsuoto <[email protected]>2026-07-11 16:06:27 +0530
committernatsuoto <[email protected]>2026-07-11 16:06:27 +0530
commitafd3c93d23e83fb47d3e9f3c900dbe4ab3f563b5 (patch)
treeda93f5d69255817e172b52b7f61fd48e21170974 /tests/library/email/basic.test.py
parentaae0da040c86c922c2f517c2e1526ea60e59f1af (diff)
downloadedify-afd3c93d23e83fb47d3e9f3c900dbe4ab3f563b5.tar.xz
edify-afd3c93d23e83fb47d3e9f3c900dbe4ab3f563b5.zip
feat(library): reorganize into 22 category folders + flat 200-name re-export at edify.library
Diffstat (limited to 'tests/library/email/basic.test.py')
-rw-r--r--tests/library/email/basic.test.py32
1 files changed, 0 insertions, 32 deletions
diff --git a/tests/library/email/basic.test.py b/tests/library/email/basic.test.py
deleted file mode 100644
index e77e3b8..0000000
--- a/tests/library/email/basic.test.py
+++ /dev/null
@@ -1,32 +0,0 @@
-from edify.library import email
-
-_TEST_CASES = [
- ("[email protected]", True),
- ("[email protected]", True),
- ("[email protected]", True),
- ("[email protected]", True),
- ("[email protected]", True),
- ("[email protected]", True),
- ("[email protected]", True),
- ("[email protected]", True),
- ("[email protected]", True),
- ("[email protected]", True),
- ("[email protected].", False),
- ("plainaddress", False),
- ("#@%^%#$@#$@#.com", False),
- ("@example.com", False),
- ("Joe Smith <[email protected]>", False),
- ("email.example.com", False),
- ("email@[email protected]", False),
- ("[email protected]", False),
- ("[email protected]", False),
- ("[email protected]", False),
- ("あいうえお@example.com", False),
- ("[email protected]", False),
- ("[email protected]", False),
-]
-
-
-def test_email():
- for candidate, expectation in _TEST_CASES:
- assert email(candidate) is expectation