]> git.friedersdorff.com Git - max/python_unittesting.git/blob - 1_standalone.py
Add README that outlines unittesting
[max/python_unittesting.git] / 1_standalone.py
1 def test_square_of_2():
2     assert 2**2 == 4
3
4 def test_fibonacci_of_5():
5     assert 1+1+2+3+5 == 12
6
7 def test_fibonacci_of_10():
8     # This should fail
9     assert 1+1+2+3+5+8+0 == 143