Merge pull request #4247 from jorisvandenbossche/autosummary-attributes

BUG: autosummary to list all class members
This commit is contained in:
Takeshi KOMIYA
2018-01-30 10:44:18 +09:00
committed by GitHub
3 changed files with 12 additions and 6 deletions

View File

@@ -153,6 +153,10 @@ def test_autosummary_generate(app, status, warning):
' ~Foo.__init__\n'
' ~Foo.bar\n'
' \n' in Foo)
assert (' .. autosummary::\n'
' \n'
' ~Foo.baz\n'
' \n' in Foo)
def test_import_by_name():