summaryrefslogtreecommitdiff
path: root/tests/test_build.py
diff options
context:
space:
mode:
authorJonathan Waltman <jonathan.waltman@gmail.com>2012-12-04 21:10:15 -0600
committerJonathan Waltman <jonathan.waltman@gmail.com>2012-12-04 21:10:15 -0600
commit8ac4aa62829391ca58fc0fd7b38e8d1d9c97a59f (patch)
tree55c818ca911dda55edc61e0a49e7c2b060b0046c /tests/test_build.py
parent1e66d33c7b8b656c0fc46ea3292e8e943fa9e30f (diff)
downloadsphinx-git-8ac4aa62829391ca58fc0fd7b38e8d1d9c97a59f.tar.gz
Add Docutils-native XML and pseudo-XML builders
Diffstat (limited to 'tests/test_build.py')
-rw-r--r--tests/test_build.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/test_build.py b/tests/test_build.py
index 5f24f89ac..87f5a14cc 100644
--- a/tests/test_build.py
+++ b/tests/test_build.py
@@ -61,3 +61,11 @@ else:
@with_app(buildername='singlehtml', cleanenv=True)
def test_singlehtml(app):
app.builder.build_all()
+
+@with_app(buildername='xml')
+def test_xml(app):
+ app.builder.build_all()
+
+@with_app(buildername='pseudoxml')
+def test_pseudoxml(app):
+ app.builder.build_all()