summaryrefslogtreecommitdiff
path: root/src/mailman/core/tests/test_pipelines.py
diff options
context:
space:
mode:
authorBarry Warsaw2012-07-06 21:08:41 -0400
committerBarry Warsaw2012-07-06 21:08:41 -0400
commit8d8ab1655b51e277570005b445d3b014afcfbc57 (patch)
tree6ba0147d975636e129a787c9dfa64dae8cffae89 /src/mailman/core/tests/test_pipelines.py
parentcd3f84b301c2150fea5402129a2e7bc862fbb52b (diff)
parent01415190ab44e69a8f09a6411564a7cb288404e8 (diff)
downloadmailman-8d8ab1655b51e277570005b445d3b014afcfbc57.tar.gz
mailman-8d8ab1655b51e277570005b445d3b014afcfbc57.tar.zst
mailman-8d8ab1655b51e277570005b445d3b014afcfbc57.zip
Diffstat (limited to 'src/mailman/core/tests/test_pipelines.py')
-rw-r--r--src/mailman/core/tests/test_pipelines.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mailman/core/tests/test_pipelines.py b/src/mailman/core/tests/test_pipelines.py
index 8f851de95..8e76cf033 100644
--- a/src/mailman/core/tests/test_pipelines.py
+++ b/src/mailman/core/tests/test_pipelines.py
@@ -29,7 +29,7 @@ __all__ = [
import unittest
from zope.component import getUtility
-from zope.interface import implements
+from zope.interface import implementer
from mailman.app.lifecycle import create_list
from mailman.config import config
@@ -48,24 +48,24 @@ from mailman.testing.layers import ConfigLayer
+@implementer(IHandler)
class DiscardingHandler:
- implements(IHandler)
name = 'discarding'
def process(self, mlist, msg, msgdata):
raise DiscardMessage('by test handler')
+@implementer(IHandler)
class RejectHandler:
- implements(IHandler)
name = 'rejecting'
def process(self, mlist, msg, msgdata):
raise RejectMessage('by test handler')
+@implementer(IPipeline)
class DiscardingPipeline:
- implements(IPipeline)
name = 'test-discarding'
description = 'Discarding test pipeline'
@@ -73,8 +73,8 @@ class DiscardingPipeline:
yield DiscardingHandler()
+@implementer(IPipeline)
class RejectingPipeline:
- implements(IPipeline)
name = 'test-rejecting'
description = 'Rejectinging test pipeline'