Skip to content

Commit bbd223e

Browse files
committed
Fixing test
1 parent 1801933 commit bbd223e

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

nextmv/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from .hello import main
2+
3+
__all__ = [main]

test/test_hello.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import nextmv
2+
3+
4+
def test_hello():
5+
nextmv.main()
6+
7+
8+
if __name__ == "__main__":
9+
test_hello()
10+
print("Everything passed")

0 commit comments

Comments
 (0)