diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-02-14 15:06:28 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-02-14 15:06:28 +0900 |
commit | 492980c23e1bbf13d66679829e6eb01223b19c58 (patch) | |
tree | 22038062e9b161e4189241d8b96e97da2324ba6a /tests/roots/test-ext-inheritance_diagram/test.py | |
parent | 72b36c1888b10eb7cdedc191de7a227386e54d28 (diff) | |
download | sphinx-git-492980c23e1bbf13d66679829e6eb01223b19c58.tar.gz |
Add testcase for PR #2311
Diffstat (limited to 'tests/roots/test-ext-inheritance_diagram/test.py')
-rw-r--r-- | tests/roots/test-ext-inheritance_diagram/test.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/roots/test-ext-inheritance_diagram/test.py b/tests/roots/test-ext-inheritance_diagram/test.py new file mode 100644 index 000000000..32f7f273c --- /dev/null +++ b/tests/roots/test-ext-inheritance_diagram/test.py @@ -0,0 +1,17 @@ +# -*- coding: utf-8 -*- + + +class Foo(object): + pass + + +class Bar(Foo): + pass + + +class Baz(Bar): + pass + + +class Qux(Foo): + pass |