diff options
author | Stephen Finucane <stephen@that.guru> | 2017-10-21 13:48:27 +0100 |
---|---|---|
committer | Stephen Finucane <stephen@that.guru> | 2017-12-03 19:24:58 +0000 |
commit | d46273ca4a73d48dff60a1e95fbeb84b73516c8f (patch) | |
tree | 2370b71e0726aa089baf92c0025089e07bab1246 /tests/test_quickstart.py | |
parent | 4c0f657ee6423d102a8fb3f2e05ca44257874416 (diff) | |
download | sphinx-git-d46273ca4a73d48dff60a1e95fbeb84b73516c8f.tar.gz |
quickstart: Rework how we collect extensions
This is a little more flexible than the existing set up and makes
maximum use of argparse capabilities.
This has the side-effect of no longer including configuration for the
'sphinx.ext.todo' extension when said extension is not enabled.
Signed-off-by: Stephen Finucane <stephen@that.guru>
Diffstat (limited to 'tests/test_quickstart.py')
-rw-r--r-- | tests/test_quickstart.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/test_quickstart.py b/tests/test_quickstart.py index 81d16eae1..f69a0a58e 100644 --- a/tests/test_quickstart.py +++ b/tests/test_quickstart.py @@ -134,7 +134,6 @@ def test_quickstart_defaults(tempdir): assert ns['copyright'] == '%s, Georg Brandl' % time.strftime('%Y') assert ns['version'] == '0.1' assert ns['release'] == '0.1' - assert ns['todo_include_todos'] is False assert ns['html_static_path'] == ['_static'] assert ns['latex_documents'] == [ ('index', 'SphinxTest.tex', 'Sphinx Test Documentation', |