summaryrefslogtreecommitdiff
path: root/tests/test_config.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-11-23 15:22:09 +0100
committerGeorg Brandl <georg@python.org>2008-11-23 15:22:09 +0100
commit91c31181b0db14b2aae8a3dc860e133881b50a2d (patch)
tree87ddb1539a3fce8df4b757ffd82d39a7eb171e11 /tests/test_config.py
parent410ac72590a69a95ac0512c0d29a12a75ccc2daa (diff)
downloadsphinx-git-91c31181b0db14b2aae8a3dc860e133881b50a2d.tar.gz
Add tests for HTML escaping.
Diffstat (limited to 'tests/test_config.py')
-rw-r--r--tests/test_config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_config.py b/tests/test_config.py
index 3b9ea6920..57d1936b2 100644
--- a/tests/test_config.py
+++ b/tests/test_config.py
@@ -21,7 +21,7 @@ def test_core_config(app):
# simple values
assert 'project' in cfg.__dict__
- assert cfg.project == 'Sphinx Tests'
+ assert cfg.project == 'Sphinx <Tests>'
assert cfg.templates_path == ['_templates']
# overrides
@@ -34,7 +34,7 @@ def test_core_config(app):
# complex default values
assert 'html_title' not in cfg.__dict__
- assert cfg.html_title == 'Sphinx Tests v0.4alpha1 documentation'
+ assert cfg.html_title == 'Sphinx <Tests> v0.4alpha1 documentation'
# complex default values mustn't raise
for valuename in cfg.config_values: