diff options
| author | Georg Brandl <georg@python.org> | 2009-03-24 11:15:24 +0000 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2009-03-24 11:15:24 +0000 |
| commit | 8f44464e3bedc971adf21ab2a820cd53cef73e91 (patch) | |
| tree | 068e8c4726678303f4ff21ed01e61f7d4de3abed /tests/test_quickstart.py | |
| parent | 73942678c89a94db33831ec79e0441e928f4b305 (diff) | |
| download | sphinx-git-8f44464e3bedc971adf21ab2a820cd53cef73e91.tar.gz | |
Fix the fix of #127 to actually work.
Diffstat (limited to 'tests/test_quickstart.py')
| -rw-r--r-- | tests/test_quickstart.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_quickstart.py b/tests/test_quickstart.py index ae001eb6b..4441ab23a 100644 --- a/tests/test_quickstart.py +++ b/tests/test_quickstart.py @@ -113,7 +113,7 @@ def test_quickstart_all_answers(tempdir): 'Separate source and build': 'y', 'Name prefix for templates': '.', 'Project name': 'STASI\xe2\x84\xa2', - 'Author name': 'Wolfgang Sch\xc3\xa4uble & G. Beckstein', + 'Author name': 'Wolfgang Sch\xc3\xa4uble & G\'Beckstein', 'Project version': '2.0', 'Project release': '2.0.1', 'Source file suffix': '.txt', @@ -142,14 +142,14 @@ def test_quickstart_all_answers(tempdir): assert ns['source_suffix'] == '.txt' assert ns['master_doc'] == 'contents' assert ns['project'] == u'STASI™' - assert ns['copyright'] == u'%s, Wolfgang Schäuble & G. Beckstein' % \ + assert ns['copyright'] == u'%s, Wolfgang Schäuble & G\'Beckstein' % \ time.strftime('%Y') assert ns['version'] == '2.0' assert ns['release'] == '2.0.1' assert ns['html_static_path'] == ['.static'] assert ns['latex_documents'] == [ ('contents', 'STASI.tex', u'STASI™ Documentation', - ur'Wolfgang Schäuble \& G. Beckstein', 'manual')] + u'Wolfgang Schäuble \\& G\'Beckstein', 'manual')] assert (tempdir / 'build').isdir() assert (tempdir / 'source' / '.static').isdir() |
