summaryrefslogtreecommitdiff
path: root/tests/test_build_latex.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_build_latex.py')
-rw-r--r--tests/test_build_latex.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/test_build_latex.py b/tests/test_build_latex.py
index a64805be3..fda03689d 100644
--- a/tests/test_build_latex.py
+++ b/tests/test_build_latex.py
@@ -1470,3 +1470,9 @@ def test_latex_elements_extrapackages(app, status, warning):
app.builder.build_all()
result = (app.outdir / 'test.tex').text()
assert r'\usepackage{foo}' in result
+
+
+@pytest.mark.sphinx('latex', testroot='nested-tables')
+def test_latex_nested_tables(app, status, warning):
+ app.builder.build_all()
+ assert '' == warning.getvalue()