summaryrefslogtreecommitdiff
path: root/tests/test_pycode_parser.py
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2019-04-24 00:23:55 +0900
committerGitHub <noreply@github.com>2019-04-24 00:23:55 +0900
commitb49ef12e6aed3481188da05955ee1782ebf70778 (patch)
tree3ea5daac16fb678120b6bab671a2ac4d83fe903c /tests/test_pycode_parser.py
parent80e50c1938ba3b17f85a8958b8baa7319c9fe66f (diff)
parent435ef05b99a73a8b1da1393219d3c660be1b9516 (diff)
downloadsphinx-git-b49ef12e6aed3481188da05955ee1782ebf70778.tar.gz
Merge pull request #6295 from tk0miya/refactor_py_domain4
autodoc: Support coroutine (refs: #4777)
Diffstat (limited to 'tests/test_pycode_parser.py')
-rw-r--r--tests/test_pycode_parser.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/test_pycode_parser.py b/tests/test_pycode_parser.py
index 403c918dc..ba9778b80 100644
--- a/tests/test_pycode_parser.py
+++ b/tests/test_pycode_parser.py
@@ -314,6 +314,21 @@ def test_decorators():
'Foo.method': ('def', 13, 15)}
+def test_async_function_and_method():
+ source = ('async def some_function():\n'
+ ' """docstring"""\n'
+ ' a = 1 + 1 #: comment1\n'
+ '\n'
+ 'class Foo:\n'
+ ' async def method(self):\n'
+ ' pass\n')
+ parser = Parser(source)
+ parser.parse()
+ assert parser.definitions == {'some_function': ('def', 1, 3),
+ 'Foo': ('class', 5, 7),
+ 'Foo.method': ('def', 6, 7)}
+
+
def test_formfeed_char():
source = ('class Foo:\n'
'\f\n'