summaryrefslogtreecommitdiffstats
path: root/tests/roots/test-ext-autosummary/autosummary_dummy_inherited_module.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/roots/test-ext-autosummary/autosummary_dummy_inherited_module.py')
-rw-r--r--tests/roots/test-ext-autosummary/autosummary_dummy_inherited_module.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/roots/test-ext-autosummary/autosummary_dummy_inherited_module.py b/tests/roots/test-ext-autosummary/autosummary_dummy_inherited_module.py
new file mode 100644
index 0000000..2b3d2da
--- /dev/null
+++ b/tests/roots/test-ext-autosummary/autosummary_dummy_inherited_module.py
@@ -0,0 +1,13 @@
+from autosummary_dummy_module import Foo
+
+
+class InheritedAttrClass(Foo):
+
+ def __init__(self):
+ #: other docstring
+ self.subclassattr = "subclassattr"
+
+ super().__init__()
+
+
+__all__ = ["InheritedAttrClass"]