Skip to content

Commit 9e048e9

Browse files
committed
simple testing using pytest
1 parent 9eaa172 commit 9e048e9

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def test_passing():
2+
assert (1, 2, 3) == (1, 2, 3)
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def test_failing():
2+
assert (1, 2, 3) == (1, 3, 2)

0 commit comments

Comments
 (0)