summaryrefslogtreecommitdiff
path: root/src/mailman/testing/plugin.py
diff options
context:
space:
mode:
authorJ08nY2017-06-01 15:46:48 +0200
committerJ08nY2017-08-07 17:39:07 +0200
commit0d4f53b51892866b5cc85ace229b23f4b9bac896 (patch)
tree5394af7e3d9e8895babf93cf4af19480d14f53dd /src/mailman/testing/plugin.py
parent38a86adcdb78c1944c26a5ab8deddff619b33bcf (diff)
downloadmailman-0d4f53b51892866b5cc85ace229b23f4b9bac896.tar.gz
mailman-0d4f53b51892866b5cc85ace229b23f4b9bac896.tar.zst
mailman-0d4f53b51892866b5cc85ace229b23f4b9bac896.zip
Diffstat (limited to 'src/mailman/testing/plugin.py')
-rw-r--r--src/mailman/testing/plugin.py36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/mailman/testing/plugin.py b/src/mailman/testing/plugin.py
new file mode 100644
index 000000000..75667844a
--- /dev/null
+++ b/src/mailman/testing/plugin.py
@@ -0,0 +1,36 @@
+# Copyright (C) 2009-2017 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/>.
+
+"""Example plugin with hooks for testing purposes."""
+
+from mailman.interfaces.plugin import IPlugin
+from public import public
+from zope.interface import implementer
+
+
+@public
+@implementer(IPlugin)
+class ExamplePlugin:
+
+ def __init__(self):
+ pass
+
+ def pre_hook(self):
+ pass
+
+ def post_hook(self):
+ pass