summaryrefslogtreecommitdiff
path: root/tests/functional/d/dotted_ancestor.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/d/dotted_ancestor.py')
-rw-r--r--tests/functional/d/dotted_ancestor.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/functional/d/dotted_ancestor.py b/tests/functional/d/dotted_ancestor.py
new file mode 100644
index 000000000..3c136591e
--- /dev/null
+++ b/tests/functional/d/dotted_ancestor.py
@@ -0,0 +1,11 @@
+"""bla"""
+# pylint: disable=no-absolute-import
+
+from . import func_w0233
+
+__revision__ = 'yo'
+
+class Aaaa(func_w0233.AAAA): # [too-few-public-methods]
+ """test dotted name in ancestors"""
+ def __init__(self):
+ func_w0233.AAAA.__init__(self)