summaryrefslogtreecommitdiff
path: root/Mailman/testing/test_replybot.py
diff options
context:
space:
mode:
Diffstat (limited to 'Mailman/testing/test_replybot.py')
-rw-r--r--Mailman/testing/test_replybot.py9
1 files changed, 2 insertions, 7 deletions
diff --git a/Mailman/testing/test_replybot.py b/Mailman/testing/test_replybot.py
index 6b371c9d0..9f5d454a6 100644
--- a/Mailman/testing/test_replybot.py
+++ b/Mailman/testing/test_replybot.py
@@ -17,16 +17,11 @@
"""Doctest harness for testing the replybot handler."""
-import doctest
import unittest
-
-options = (doctest.ELLIPSIS
- | doctest.NORMALIZE_WHITESPACE
- | doctest.REPORT_NDIFF)
+from Mailman.testing.base import make_docfile_suite
def test_suite():
suite = unittest.TestSuite()
- suite.addTest(doctest.DocFileSuite('../docs/replybot.txt',
- optionflags=options))
+ suite.addTest(make_docfile_suite('../docs/replybot.txt'))
return suite