"""Tests the post_transforms""" import pytest from docutils import nodes @pytest.mark.sphinx('html', testroot='transforms-post_transforms-missing-reference') def test_nitpicky_warning(app, status, warning): app.build() assert ('index.rst:4: WARNING: py:class reference target ' 'not found: io.StringIO' in warning.getvalue()) content = (app.outdir / 'index.html').read_text(encoding='utf8') assert ('
'
'io.StringIO
missing-reference.StringIO
' in content @pytest.mark.sphinx('html', testroot='domain-py-python_use_unqualified_type_names', freshenv=True) def test_missing_reference_conditional_pending_xref(app, status, warning): def missing_reference(app, env, node, contnode): return contnode warning.truncate(0) app.connect('missing-reference', missing_reference) app.build() assert warning.getvalue() == '' content = (app.outdir / 'index.html').read_text(encoding='utf8') assert 'Age' in content @pytest.mark.sphinx('html', testroot='transforms-post_transforms-keyboard', freshenv=True) def test_keyboard_hyphen_spaces(app): """Regression test for issue 10495, we want no crash.""" app.build() assert "spanish" in (app.outdir / 'index.html').read_text(encoding='utf8') assert "inquisition" in (app.outdir / 'index.html').read_text(encoding='utf8')