summaryrefslogtreecommitdiff
path: root/src/mailman/styles/tests/test_styles.py
diff options
context:
space:
mode:
authorBarry Warsaw2016-03-25 18:10:02 -0400
committerBarry Warsaw2016-03-25 18:10:02 -0400
commitc4f99aac5e691f147023f58dc196526cffb2b718 (patch)
tree3697323d2483d20459a85e233b0cc37b4eadb5c7 /src/mailman/styles/tests/test_styles.py
parent077a49a823af227c7038f9533eb8d9d55571bbe7 (diff)
downloadmailman-c4f99aac5e691f147023f58dc196526cffb2b718.tar.gz
mailman-c4f99aac5e691f147023f58dc196526cffb2b718.tar.zst
mailman-c4f99aac5e691f147023f58dc196526cffb2b718.zip
Clean up the styles directory.
Diffstat (limited to 'src/mailman/styles/tests/test_styles.py')
-rw-r--r--src/mailman/styles/tests/test_styles.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/mailman/styles/tests/test_styles.py b/src/mailman/styles/tests/test_styles.py
index a54b779b2..657433aee 100644
--- a/src/mailman/styles/tests/test_styles.py
+++ b/src/mailman/styles/tests/test_styles.py
@@ -17,11 +17,6 @@
"""Test styles."""
-__all__ = [
- 'TestStyle',
- ]
-
-
import unittest
from mailman.interfaces.styles import (
@@ -32,7 +27,6 @@ from zope.interface import implementer
from zope.interface.exceptions import DoesNotImplement
-
@implementer(IStyle)
class DummyStyle:
@@ -46,7 +40,6 @@ class DummyStyle:
styles.append(self)
-
class TestStyle(unittest.TestCase):
"""Test styles."""