summaryrefslogtreecommitdiff
path: root/src/mailman/handlers/tests/test_rfc_2369.py
diff options
context:
space:
mode:
authorBarry Warsaw2016-03-25 09:36:52 -0400
committerBarry Warsaw2016-03-25 09:36:52 -0400
commitb9c06627e46ff1e9f09965228ab3b48f217109af (patch)
treea600fa04dd2ac6d006b88aee2c5e605673629fa3 /src/mailman/handlers/tests/test_rfc_2369.py
parent49d630f2761175e404f3b1d811e61bc43eb6b25b (diff)
downloadmailman-b9c06627e46ff1e9f09965228ab3b48f217109af.tar.gz
mailman-b9c06627e46ff1e9f09965228ab3b48f217109af.tar.zst
mailman-b9c06627e46ff1e9f09965228ab3b48f217109af.zip
Diffstat (limited to 'src/mailman/handlers/tests/test_rfc_2369.py')
-rw-r--r--src/mailman/handlers/tests/test_rfc_2369.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/mailman/handlers/tests/test_rfc_2369.py b/src/mailman/handlers/tests/test_rfc_2369.py
index cbbaf2153..e78cf9c47 100644
--- a/src/mailman/handlers/tests/test_rfc_2369.py
+++ b/src/mailman/handlers/tests/test_rfc_2369.py
@@ -17,11 +17,6 @@
"""Test the rfc_2369 handler."""
-__all__ = [
- 'TestRFC2369',
- ]
-
-
import unittest
from mailman.app.lifecycle import create_list
@@ -35,7 +30,6 @@ from urllib.parse import urljoin
from zope.interface import implementer
-
@implementer(IArchiver)
class DummyArchiver:
"""An example archiver which does nothing but return URLs."""
@@ -74,7 +68,6 @@ class BrokenArchiver:
raise RuntimeError('Cannot archive message')
-
class TestRFC2369(unittest.TestCase):
"""Test the rfc_2369 handler."""