Skip to content

Commit 4c8d5f5

Browse files
author
Nathaniel Woodthorpe
committed
Initial commit
0 parents  commit 4c8d5f5

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
__pycache__/
2+
*.pyc

hello.py

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def hello_world():
2+
return "Hello World!"

hello_test.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import hello;
2+
3+
def test_hello():
4+
assert hello.hello_world() == "Hello!"

0 commit comments

Comments
 (0)