test: updated custom command test to index python code
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
class Bar:
|
||||
def __init__(self):
|
||||
self.baz = 'Initial String'
|
||||
@@ -0,0 +1,5 @@
|
||||
import bar
|
||||
|
||||
class Foo(bar.Bar):
|
||||
def print(self):
|
||||
print(self.baz)
|
||||
@@ -0,0 +1,5 @@
|
||||
import foo
|
||||
|
||||
def main():
|
||||
f = foo.Foo()
|
||||
f.print()
|
||||
Reference in New Issue
Block a user