data: added manual tests for python sourcegroup

This commit is contained in:
mlangkabel
2019-04-23 16:53:32 +02:00
parent 42cd0f05d7
commit 9e9d488834
8 changed files with 100 additions and 0 deletions
@@ -0,0 +1,4 @@
import baz
class Bar(baz.Baz):
pass
@@ -0,0 +1,2 @@
class Baz:
pass
@@ -0,0 +1,4 @@
import baz
class Foo(baz.Baz):
pass
@@ -0,0 +1,6 @@
import foo
import bar
def test():
foo = foo.Foo()
bar = bar.Bar()