summaryrefslogtreecommitdiff
path: root/tests/test_ext_doctest.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_ext_doctest.py')
-rw-r--r--tests/test_ext_doctest.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/test_ext_doctest.py b/tests/test_ext_doctest.py
new file mode 100644
index 00000000..002afff6
--- /dev/null
+++ b/tests/test_ext_doctest.py
@@ -0,0 +1,31 @@
+# -*- coding: utf-8 -*-
+"""
+ test_doctest
+ ~~~~~~~~~~~~
+
+ Test the doctest extension.
+
+ :copyright: Copyright 2007-2014 by the Sphinx team, see AUTHORS.
+ :license: BSD, see LICENSE for details.
+"""
+
+from util import with_app
+
+cleanup_called = 0
+
+
+@with_app(buildername='doctest', testroot='doctest')
+def test_build(app, status, warning):
+ global cleanup_called
+ cleanup_called = 0
+ app.builder.build_all()
+ if app.statuscode != 0:
+ assert False, 'failures in doctests:' + status.getvalue()
+ # in doctest.txt, there are two named groups and the default group,
+ # so the cleanup function must be called three times
+ assert cleanup_called == 3, 'testcleanup did not get executed enough times'
+
+
+def cleanup_call():
+ global cleanup_called
+ cleanup_called += 1