diff --git a/test/test_example.py b/test/test_example.py deleted file mode 100644 index 897c195..0000000 --- a/test/test_example.py +++ /dev/null @@ -1,23 +0,0 @@ -""" -Example of pytest functionality - -Goes over some basic assert examples -""" -import pytest - - -def test_example_assert_equal(): - assert 0 == 0 - - -def test_example_assert_no_equal(): - assert 0 != 1 - - -def test_example_assert_almost_equal(): - assert 1.0 == pytest.approx(1.01, .1) - - -""" -To run this suite of tests, run 'pytest' in the main directory -""" \ No newline at end of file