Skip to content

Commit 74800ed

Browse files
Add test
1 parent 9daf823 commit 74800ed

File tree

4 files changed

+14
-0
lines changed

4 files changed

+14
-0
lines changed

a/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
from .b import print_b
2+
from .c import print_c

a/b.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def print_b() -> str:
2+
return "B"

a/c.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def print_c() -> str:
2+
return "C"

test_a.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import a
2+
3+
print(a.print_b())
4+
print(a.print_c())
5+
6+
# import platform
7+
# print(platform.python_version())
8+

0 commit comments

Comments
 (0)