summaryrefslogtreecommitdiffstats
path: root/tests/test_ext_ifconfig.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_ext_ifconfig.py')
-rw-r--r--tests/test_ext_ifconfig.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/test_ext_ifconfig.py b/tests/test_ext_ifconfig.py
new file mode 100644
index 0000000..942f2c5
--- /dev/null
+++ b/tests/test_ext_ifconfig.py
@@ -0,0 +1,11 @@
+"""Test sphinx.ext.ifconfig extension."""
+
+import pytest
+
+
+@pytest.mark.sphinx('text', testroot='ext-ifconfig')
+def test_ifconfig(app, status, warning):
+ app.builder.build_all()
+ result = (app.outdir / 'index.txt').read_text(encoding='utf8')
+ assert 'spam' in result
+ assert 'ham' not in result