summaryrefslogtreecommitdiff
path: root/Mailman/testing/test_cook_headers.py
diff options
context:
space:
mode:
authorBarry Warsaw2007-06-21 10:23:40 -0400
committerBarry Warsaw2007-06-21 10:23:40 -0400
commit6c1ccc236bc24d8b3bb04807ba4b24e8a7a0d18e (patch)
treefe4787d9b79e27ea361b33a4f98a12d2e695f16b /Mailman/testing/test_cook_headers.py
parent3a86b40fe4e3b28c2d9f4e3bbd2cc0eeefe31453 (diff)
downloadmailman-6c1ccc236bc24d8b3bb04807ba4b24e8a7a0d18e.tar.gz
mailman-6c1ccc236bc24d8b3bb04807ba4b24e8a7a0d18e.tar.zst
mailman-6c1ccc236bc24d8b3bb04807ba4b24e8a7a0d18e.zip
Convert the CookHeaders tests in test_handlers to using doctests, split up
into several sub-documents. Defaults.py.in: Removed OLD_STYLE_PREFIXING. So-called 'new style' prefixing is the default and only option now. CookHeaders.py is updated to the new API and some (but not all) of the code has been updated to more modern Python idioms. reply_goes_to_list attribute has been changed from a strict integer to a munepy enum called ReplyToMunging. RFC 2369 headers List-Subscribe and List-Unsubscribe now use the preferred -join and -leave addresses instead of the -request address with a subject value.
Diffstat (limited to 'Mailman/testing/test_cook_headers.py')
-rw-r--r--Mailman/testing/test_cook_headers.py35
1 files changed, 35 insertions, 0 deletions
diff --git a/Mailman/testing/test_cook_headers.py b/Mailman/testing/test_cook_headers.py
new file mode 100644
index 000000000..ec8997858
--- /dev/null
+++ b/Mailman/testing/test_cook_headers.py
@@ -0,0 +1,35 @@
+# Copyright (C) 2007 by the Free Software Foundation, Inc.
+#
+# This program 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 2
+# of the License, or (at your option) any later version.
+#
+# This program 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 this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+# USA.
+
+"""Doctest harness for the CookHeaders handler."""
+
+import os
+import doctest
+import unittest
+
+options = (doctest.ELLIPSIS
+ | doctest.NORMALIZE_WHITESPACE
+ | doctest.REPORT_NDIFF)
+
+
+def test_suite():
+ suite = unittest.TestSuite()
+ for filename in ('ack-headers', 'cook-headers', 'subject-munging',
+ 'reply-to'):
+ path = os.path.join('..', 'docs', filename + '.txt')
+ suite.addTest(doctest.DocFileSuite(path, optionflags=options))
+ return suite