diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-09-03 21:18:58 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-01-07 23:06:14 +0900 |
commit | 68c90a26f1e4bcf4fd1a738641219e1d6f12664f (patch) | |
tree | bbd3b1fb385bac31563b5c2be3f618874b0eb277 /tests/test_quickstart.py | |
parent | 353c3e9fd6f35fb129dac61798ff1b09c14f6d85 (diff) | |
download | sphinx-git-68c90a26f1e4bcf4fd1a738641219e1d6f12664f.tar.gz |
quickstart: Simplify generated conf.py (for latex)
Diffstat (limited to 'tests/test_quickstart.py')
-rw-r--r-- | tests/test_quickstart.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/test_quickstart.py b/tests/test_quickstart.py index bcd3cf6e9..10e015fd9 100644 --- a/tests/test_quickstart.py +++ b/tests/test_quickstart.py @@ -119,9 +119,6 @@ def test_quickstart_defaults(tempdir): assert ns['version'] == '0.1' assert ns['release'] == '0.1' assert ns['html_static_path'] == ['_static'] - assert ns['latex_documents'] == [ - ('index', 'SphinxTest.tex', 'Sphinx Test Documentation', - 'Georg Brandl', 'manual')] assert (tempdir / '_static').isdir() assert (tempdir / '_templates').isdir() @@ -178,9 +175,6 @@ def test_quickstart_all_answers(tempdir): assert ns['release'] == '2.0.1' assert ns['todo_include_todos'] is True assert ns['html_static_path'] == ['.static'] - assert ns['latex_documents'] == [ - ('contents', 'STASI.tex', 'STASI™ Documentation', - 'Wolfgang Schäuble \\& G\'Beckstein', 'manual')] assert (tempdir / 'build').isdir() assert (tempdir / 'source' / '.static').isdir() @@ -249,7 +243,6 @@ def test_default_filename(tempdir): assert conffile.isfile() ns = {} execfile_(conffile, ns) - assert ns['latex_documents'][0][1] == 'sphinx.tex' def test_extensions(tempdir): |