Fix gettext does not extract glossary terms. Closes #1090

This commit is contained in:
Takayuki Shimizukawa
2013-01-30 00:13:58 +09:00
parent de1f19da36
commit 6f4764f77b
5 changed files with 65 additions and 1 deletions

View File

@@ -252,6 +252,21 @@ def test_i18n_definition_terms(app):
assert result == expect
@with_intl_app(buildername='text')
def test_i18n_glossary_terms(app):
# regression test for #1090
app.builder.build(['glossary_terms'])
result = (app.outdir / 'glossary_terms.txt').text(encoding='utf-8')
expect = (u"\nI18N WITH GLOSSARY TERMS"
u"\n************************\n"
u"\nSOME TERM"
u"\n THE CORRESPONDING GLOSSARY\n"
u"\nSOME OTHER TERM"
u"\n THE CORRESPONDING GLOSSARY #2\n")
assert result == expect
@with_intl_app(buildername='text')
def test_seealso(app):
app.builder.build(['seealso'])