2018-07-20 04:44:01 -05:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.sphinx('html', testroot='trim_doctest_flags')
|
|
|
|
def test_trim_doctest_flags_html(app, status, warning):
|
|
|
|
app.build()
|
|
|
|
|
2022-04-26 21:04:19 -05:00
|
|
|
result = (app.outdir / 'index.html').read_text(encoding='utf8')
|
2018-07-20 04:44:01 -05:00
|
|
|
assert 'FOO' not in result
|
|
|
|
assert 'BAR' in result
|
|
|
|
assert 'BAZ' not in result
|
|
|
|
assert 'QUX' not in result
|
2019-07-02 09:19:28 -05:00
|
|
|
assert 'QUUX' not in result
|
2020-08-01 00:31:42 -05:00
|
|
|
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()
|
|
|
|
|
2022-04-26 21:04:19 -05:00
|
|
|
result = (app.outdir / 'index.html').read_text(encoding='utf8')
|
2020-08-01 00:31:42 -05:00
|
|
|
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
|
2018-07-20 04:44:01 -05:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.sphinx('latex', testroot='trim_doctest_flags')
|
|
|
|
def test_trim_doctest_flags_latex(app, status, warning):
|
|
|
|
app.build()
|
|
|
|
|
2022-04-26 21:04:19 -05:00
|
|
|
result = (app.outdir / 'python.tex').read_text(encoding='utf8')
|
2018-07-20 04:44:01 -05:00
|
|
|
assert 'FOO' not in result
|
|
|
|
assert 'BAR' in result
|
|
|
|
assert 'BAZ' not in result
|
|
|
|
assert 'QUX' not in result
|
2019-07-02 09:19:28 -05:00
|
|
|
assert 'QUUX' not in result
|
2020-08-01 00:31:42 -05:00
|
|
|
assert 'CORGE' not in result
|
|
|
|
assert 'GRAULT' in result
|