diff options
| author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2021-01-22 21:40:27 +0900 |
|---|---|---|
| committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2021-01-22 21:40:27 +0900 |
| commit | d5d072bc3a561b0d462aa27b9f85662da1a5bd93 (patch) | |
| tree | b9ab3be4dd12e960cef118b2f516ed8f06144b15 /tests/test_domain_c.py | |
| parent | 86c75cea13d87f1cbc7e9c30916bef0cf972eb5c (diff) | |
| parent | aebfbbb532d2f887d3a372454be639f864c1690a (diff) | |
| download | sphinx-git-d5d072bc3a561b0d462aa27b9f85662da1a5bd93.tar.gz | |
Merge branch '3.4.x' into 3.x
Diffstat (limited to 'tests/test_domain_c.py')
| -rw-r--r-- | tests/test_domain_c.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/test_domain_c.py b/tests/test_domain_c.py index 0f17fd041..2cfcf74fa 100644 --- a/tests/test_domain_c.py +++ b/tests/test_domain_c.py @@ -598,6 +598,13 @@ def test_build_function_param_target(app, warning): ] +@pytest.mark.sphinx(testroot='domain-c', confoverrides={'nitpicky': True}) +def test_build_ns_lookup(app, warning): + app.builder.build_all() + ws = filter_warnings(warning, "ns_lookup") + assert len(ws) == 0 + + def _get_obj(app, queryName): domain = app.env.get_domain('c') for name, dispname, objectType, docname, anchor, prio in domain.get_objects(): |
