summaryrefslogtreecommitdiff
path: root/tests/test_autodoc.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_autodoc.py')
-rw-r--r--tests/test_autodoc.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/test_autodoc.py b/tests/test_autodoc.py
index f6f5a618c..518d23e8c 100644
--- a/tests/test_autodoc.py
+++ b/tests/test_autodoc.py
@@ -1689,6 +1689,30 @@ def test_partialmethod(app):
assert list(actual) == expected
+@pytest.mark.usefixtures('setup_test')
+def test_module_variables():
+ options = {"members": None,
+ "undoc-members": True}
+ actual = do_autodoc(app, 'module', 'target.module', options)
+ assert list(actual) == [
+ '',
+ '.. py:module:: target.module',
+ '',
+ '',
+ '.. py:data:: CONSTANT1',
+ ' :module: target.module',
+ " :annotation: = ''",
+ '',
+ ' docstring for CONSTANT1',
+ ' ',
+ '',
+ '.. py:data:: CONSTANT2',
+ ' :module: target.module',
+ " :annotation: = ''",
+ '',
+ ]
+
+
@pytest.mark.sphinx('html', testroot='ext-autodoc')
def test_autodoc_typehints_signature(app):
app.config.autodoc_typehints = "signature"