Add Docutils-native XML and pseudo-XML builders

This commit is contained in:
Jonathan Waltman
2012-12-04 21:10:15 -06:00
parent 1e66d33c7b
commit 8ac4aa6282
10 changed files with 235 additions and 2 deletions

View File

@@ -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()