Forgot to add some test files

This commit is contained in:
Dave Halter
2019-12-09 19:26:24 +01:00
parent 8e33fd1931
commit 3065609162
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
from .module import Bar
class Foo(Bar):
def foo(self):
pass

View File

@@ -0,0 +1,4 @@
class Bar:
def bar(self):
pass