Add test for cross-module usages

This commit is contained in:
Andy Lee
2017-04-01 15:52:22 +02:00
committed by Dave Halter
parent 281d6a87a0
commit 3e36238da3
4 changed files with 53 additions and 1 deletions
@@ -0,0 +1,4 @@
"""
An import tree, for testing usages.
"""
@@ -0,0 +1,4 @@
from . import b
def foo():
b.bar()
@@ -0,0 +1,2 @@
def bar():
pass