summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJon Waltman <jonathan.waltman@gmail.com>2012-12-04 21:10:15 -0600
committerJon Waltman <jonathan.waltman@gmail.com>2012-12-04 21:10:15 -0600
commit4ba1b19953223c6b4ac0f4e82b6116ee5849ef47 (patch)
tree55c818ca911dda55edc61e0a49e7c2b060b0046c /tests
parent7adf543e001eaee607cce707512d851b02a885d8 (diff)
downloadsphinx-4ba1b19953223c6b4ac0f4e82b6116ee5849ef47.tar.gz
Add Docutils-native XML and pseudo-XML builders
Diffstat (limited to 'tests')
-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 5f24f89a..87f5a14c 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()