mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
- Use print function instead of print statement; - Use new exception handling; - Use in operator instead of has_key(); - Do not use tuple arguments in functions; - Other miscellaneous improvements. This is based on output of `futurize --stage1`, with some manual corrections.
37 lines
906 B
Python
37 lines
906 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
test_doctest
|
|
~~~~~~~~~~~~
|
|
|
|
Test the doctest extension.
|
|
|
|
:copyright: Copyright 2007-2013 by the Sphinx team, see AUTHORS.
|
|
:license: BSD, see LICENSE for details.
|
|
"""
|
|
from __future__ import print_function
|
|
|
|
import sys
|
|
import StringIO
|
|
|
|
from util import with_app
|
|
|
|
|
|
status = StringIO.StringIO()
|
|
cleanup_called = 0
|
|
|
|
@with_app(buildername='doctest', status=status)
|
|
def test_build(app):
|
|
global cleanup_called
|
|
cleanup_called = 0
|
|
app.builder.build_all()
|
|
if app.statuscode != 0:
|
|
print(status.getvalue(), file=sys.stderr)
|
|
assert False, 'failures in doctests'
|
|
# 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
|