diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-11-16 19:22:34 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-11-16 19:42:06 +0900 |
commit | f3469bcc8fedac8c196a3df7e71a8a47300dcb64 (patch) | |
tree | 4a17978128866bb70a55ba78b66528948f746a71 /tests/test_build_latex.py | |
parent | 5f559fbb983b0bfed449daf6f2badf4e2c66098d (diff) | |
download | sphinx-git-f3469bcc8fedac8c196a3df7e71a8a47300dcb64.tar.gz |
Make escape() and hlescape() as public APIs of texescape
Diffstat (limited to 'tests/test_build_latex.py')
-rw-r--r-- | tests/test_build_latex.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_build_latex.py b/tests/test_build_latex.py index 0ebcd0b62..38e99f48a 100644 --- a/tests/test_build_latex.py +++ b/tests/test_build_latex.py @@ -1414,6 +1414,7 @@ def test_default_latex_documents(): 'project': 'STASI™ Documentation', 'author': "Wolfgang Schäuble & G'Beckstein."}) config.init_values() + config.add('latex_engine', None, True, None) expected = [('index', 'stasi.tex', 'STASI™ Documentation', r"Wolfgang Schäuble \& G'Beckstein.\@{}", 'manual')] assert default_latex_documents(config) == expected |