summaryrefslogtreecommitdiff
path: root/src/mailman/runners/tests/test_pipeline.py
diff options
context:
space:
mode:
authorBarry Warsaw2016-03-25 18:03:12 -0400
committerBarry Warsaw2016-03-25 18:03:12 -0400
commit077a49a823af227c7038f9533eb8d9d55571bbe7 (patch)
treedd0d2710a8bad8da08b085ffc611fdd8f9642813 /src/mailman/runners/tests/test_pipeline.py
parent142aca81121ec885d70ed74ea5a6b76ecf05221b (diff)
downloadmailman-077a49a823af227c7038f9533eb8d9d55571bbe7.tar.gz
mailman-077a49a823af227c7038f9533eb8d9d55571bbe7.tar.zst
mailman-077a49a823af227c7038f9533eb8d9d55571bbe7.zip
Diffstat (limited to 'src/mailman/runners/tests/test_pipeline.py')
-rw-r--r--src/mailman/runners/tests/test_pipeline.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mailman/runners/tests/test_pipeline.py b/src/mailman/runners/tests/test_pipeline.py
index f8dcfc507..14f13883d 100644
--- a/src/mailman/runners/tests/test_pipeline.py
+++ b/src/mailman/runners/tests/test_pipeline.py
@@ -17,11 +17,6 @@
"""Test the pipeline runner."""
-__all__ = [
- 'TestPipelineRunner',
- ]
-
-
import unittest
from mailman.app.lifecycle import create_list
@@ -35,7 +30,6 @@ from mailman.testing.layers import ConfigLayer
from zope.interface import implementer
-
@implementer(IHandler)
class MyTestHandler:
"""See `IHandler`."""
@@ -51,7 +45,6 @@ class MyTestHandler:
self._test.mark(self._marker)
-
@implementer(IPipeline)
class MyTestPipeline:
name = 'test'
@@ -65,7 +58,6 @@ class MyTestPipeline:
yield MyTestHandler(self._marker, self._test)
-
class TestPipelineRunner(unittest.TestCase):
"""Test the pipeline runner."""