merge with epub fork

This commit is contained in:
Georg Brandl
2009-12-28 19:00:48 +01:00
16 changed files with 1122 additions and 4 deletions

View File

@@ -279,6 +279,10 @@ def test_htmlhelp(app):
def test_qthelp(app):
app.builder.build_all()
@with_app(buildername='epub')
def test_epub(app):
app.builder.build_all()
@with_app(buildername='changes', cleanenv=True)
def test_changes(app):
app.builder.build_all()

View File

@@ -25,7 +25,7 @@ def test_theme_api(app):
# test Theme class API
assert set(Theme.themes.keys()) == \
set(['basic', 'default', 'scrolls', 'agogo', 'sphinxdoc',
'traditional', 'testtheme', 'ziptheme'])
'traditional', 'testtheme', 'ziptheme', 'epub'])
assert Theme.themes['testtheme'][1] is None
assert isinstance(Theme.themes['ziptheme'][1], zipfile.ZipFile)