2018-07-20 18:44:01 +09:00
|
|
|
"""
|
2018-07-21 11:25:54 +09:00
|
|
|
test_transforms_post_transforms_code
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2018-07-20 18:44:01 +09:00
|
|
|
|
2019-01-02 16:00:30 +09:00
|
|
|
:copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS.
|
2018-07-20 18:44:01 +09:00
|
|
|
: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').text(encoding='utf8')
|
|
|
|
|
assert 'FOO' not in result
|
|
|
|
|
assert 'BAR' in result
|
|
|
|
|
assert 'BAZ' not in result
|
|
|
|
|
assert 'QUX' not in result
|
2019-07-02 10:19:28 -04:00
|
|
|
assert 'QUUX' not in result
|
2018-07-20 18:44:01 +09:00
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.sphinx('latex', testroot='trim_doctest_flags')
|
|
|
|
|
def test_trim_doctest_flags_latex(app, status, warning):
|
|
|
|
|
app.build()
|
|
|
|
|
|
2018-09-03 21:18:58 +09:00
|
|
|
result = (app.outdir / 'python.tex').text(encoding='utf8')
|
2018-07-20 18:44:01 +09:00
|
|
|
assert 'FOO' not in result
|
|
|
|
|
assert 'BAR' in result
|
|
|
|
|
assert 'BAZ' not in result
|
|
|
|
|
assert 'QUX' not in result
|
2019-07-02 10:19:28 -04:00
|
|
|
assert 'QUUX' not in result
|