From c6e0ce1093b3b7201facc73e5de3d46ac32c5804 Mon Sep 17 00:00:00 2001 From: beckynevin Date: Thu, 5 Oct 2023 08:24:33 -0600 Subject: [PATCH] removing tests --- tests/__init__.py | 0 tests/test.py | 23 ----------------------- tests/test_example.py | 23 ----------------------- 3 files changed, 46 deletions(-) delete mode 100644 tests/__init__.py delete mode 100644 tests/test.py delete mode 100644 tests/test_example.py diff --git a/tests/__init__.py b/tests/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/tests/test.py b/tests/test.py deleted file mode 100644 index 5958946..0000000 --- a/tests/test.py +++ /dev/null @@ -1,23 +0,0 @@ -""" -Example of pytest functionality - -Goes over some basic assert examples -""" -import pytest - - -def example_assert_equal(): - assert 0 == 0 - - -def example_assert_no_equal(): - assert 0 != 1 - - -def 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 diff --git a/tests/test_example.py b/tests/test_example.py deleted file mode 100644 index 5958946..0000000 --- a/tests/test_example.py +++ /dev/null @@ -1,23 +0,0 @@ -""" -Example of pytest functionality - -Goes over some basic assert examples -""" -import pytest - - -def example_assert_equal(): - assert 0 == 0 - - -def example_assert_no_equal(): - assert 0 != 1 - - -def 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