Skip to content

Commit 70060cd

Browse files
authored
...
1 parent a094709 commit 70060cd

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

test_sample.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# test_sample.py
2+
3+
def test_example_addition():
4+
assert 1 + 1 == 2
5+
6+
def test_example_subtraction():
7+
assert 5 - 3 == 2
8+
9+
def test_example_multiplication():
10+
assert 3 * 4 == 12
11+
12+
def test_example_division():
13+
assert 8 / 2 == 4

0 commit comments

Comments
 (0)