mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
.. note:: $ find sphinx tests LICENSE doc/conf.py -type f -exec sed -i '' -e 's/2007\-20../2007-2021/' {} \; $ git co sphinx/locale/**/*.js sphinx/templates/epub3/mimetype
53 lines
1.4 KiB
Python
53 lines
1.4 KiB
Python
"""
|
|
test_transforms_post_transforms_code
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
:copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS.
|
|
:license: BSD, see LICENSE for details.
|
|
"""
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.mark.sphinx('html', testroot='trim_doctest_flags')
|
|
def test_trim_doctest_flags_html(app, status, warning):
|
|
app.build()
|
|
|
|
result = (app.outdir / 'index.html').read_text()
|
|
assert 'FOO' not in result
|
|
assert 'BAR' in result
|
|
assert 'BAZ' not in result
|
|
assert 'QUX' not in result
|
|
assert 'QUUX' not in result
|
|
assert 'CORGE' not in result
|
|
assert 'GRAULT' in result
|
|
|
|
|
|
@pytest.mark.sphinx('html', testroot='trim_doctest_flags',
|
|
confoverrides={'trim_doctest_flags': False})
|
|
def test_trim_doctest_flags_disabled(app, status, warning):
|
|
app.build()
|
|
|
|
result = (app.outdir / 'index.html').read_text()
|
|
assert 'FOO' in result
|
|
assert 'BAR' in result
|
|
assert 'BAZ' in result
|
|
assert 'QUX' in result
|
|
assert 'QUUX' not in result
|
|
assert 'CORGE' not in result
|
|
assert 'GRAULT' in result
|
|
|
|
|
|
@pytest.mark.sphinx('latex', testroot='trim_doctest_flags')
|
|
def test_trim_doctest_flags_latex(app, status, warning):
|
|
app.build()
|
|
|
|
result = (app.outdir / 'python.tex').read_text()
|
|
assert 'FOO' not in result
|
|
assert 'BAR' in result
|
|
assert 'BAZ' not in result
|
|
assert 'QUX' not in result
|
|
assert 'QUUX' not in result
|
|
assert 'CORGE' not in result
|
|
assert 'GRAULT' in result
|