diff options
| author | Barry Warsaw | 2011-05-01 12:44:23 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2011-05-01 12:44:23 -0400 |
| commit | cab8aea12c63fe4bcf8930e9b2f53012d2a74ee8 (patch) | |
| tree | b348573e40c969c3ae1f24387c1a6ebbf78c5d35 /src/mailman/utilities/tests | |
| parent | a90ca4ce77d99460ffd36a366cea0162869df783 (diff) | |
| download | mailman-cab8aea12c63fe4bcf8930e9b2f53012d2a74ee8.tar.gz mailman-cab8aea12c63fe4bcf8930e9b2f53012d2a74ee8.tar.zst mailman-cab8aea12c63fe4bcf8930e9b2f53012d2a74ee8.zip | |
Diffstat (limited to 'src/mailman/utilities/tests')
| -rw-r--r-- | src/mailman/utilities/tests/test_email.py | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/src/mailman/utilities/tests/test_email.py b/src/mailman/utilities/tests/test_email.py new file mode 100644 index 000000000..d34c55ee8 --- /dev/null +++ b/src/mailman/utilities/tests/test_email.py @@ -0,0 +1,49 @@ +# Copyright (C) 2011 by the Free Software Foundation, Inc. +# +# This file is part of GNU Mailman. +# +# GNU Mailman is free software: you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) +# any later version. +# +# GNU Mailman is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +# more details. +# +# You should have received a copy of the GNU General Public License along with +# GNU Mailman. If not, see <http://www.gnu.org/licenses/>. + +"""Testing app.bounces functions.""" + +from __future__ import absolute_import, unicode_literals + +__metaclass__ = type +__all__ = [ + 'test_suite', + ] + + +import unittest + +from mailman.utilities.email import split_email + + + +class TestEmail(unittest.TestCase): + def test_normal_split(self): + self.assertEqual(split_email('anne@example.com'), + ('anne', ['example', 'com'])) + self.assertEqual(split_email('anne@foo.example.com'), + ('anne', ['foo', 'example', 'com'])) + + def test_no_at_split(self): + self.assertEqual(split_email('anne'), ('anne', None)) + + + +def test_suite(): + suite = unittest.TestSuite() + suite.addTest(unittest.makeSuite(TestEmail)) + return suite |
