Merge pull request #8529 from jdufresne/dup-test

Remove duplicate test in test_ext_autodoc.py
This commit is contained in:
Takeshi KOMIYA
2020-12-12 23:55:10 +09:00
committed by GitHub

View File

@@ -367,11 +367,6 @@ def test_get_doc(app):
"""Döcstring"""
assert getdocl('function', f) == ['Döcstring']
# already-unicode docstrings must be taken literally
def f():
"""Döcstring"""
assert getdocl('function', f) == ['Döcstring']
# verify that method docstrings get extracted in both normal case
# and in case of bound method posing as a function
class J: # NOQA