summaryrefslogtreecommitdiff
path: root/tests/test_ext_autodoc_autodata.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_ext_autodoc_autodata.py')
-rw-r--r--tests/test_ext_autodoc_autodata.py30
1 files changed, 0 insertions, 30 deletions
diff --git a/tests/test_ext_autodoc_autodata.py b/tests/test_ext_autodoc_autodata.py
index f2430c31b..83647d995 100644
--- a/tests/test_ext_autodoc_autodata.py
+++ b/tests/test_ext_autodoc_autodata.py
@@ -82,36 +82,6 @@ def test_autodata_GenericAlias(app):
@pytest.mark.sphinx('html', testroot='ext-autodoc')
-def test_autodata_NewType(app):
- actual = do_autodoc(app, 'data', 'target.typevar.T6')
- assert list(actual) == [
- '',
- '.. py:data:: T6',
- ' :module: target.typevar',
- '',
- ' T6',
- '',
- ' alias of :py:class:`~datetime.date`',
- '',
- ]
-
-
-@pytest.mark.sphinx('html', testroot='ext-autodoc')
-def test_autodata_TypeVar(app):
- actual = do_autodoc(app, 'data', 'target.typevar.T1')
- assert list(actual) == [
- '',
- '.. py:data:: T1',
- ' :module: target.typevar',
- '',
- ' T1',
- '',
- " alias of TypeVar('T1')",
- '',
- ]
-
-
-@pytest.mark.sphinx('html', testroot='ext-autodoc')
def test_autodata_hide_value(app):
actual = do_autodoc(app, 'data', 'target.hide_value.SENTINEL1')
assert list(actual) == [