diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-08-04 13:00:07 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-08-04 13:00:07 -0500 |
commit | 0d97582126b4c177f5a12388b6ff2548ef8acdac (patch) | |
tree | b04dac745c3c22ac9cea59554d7fe76b4fb2f52c /tests/tests.py | |
parent | a818c979e6c7f0f47092a427f4e0e0c70e01e6cc (diff) |
remove test helpers and meta testing
The meta testing code was really redundant. There are libraries and
tools already made for coverage tests.
Also, it was causing a problem with the unit testing because importing
the unittest module inside of another included module is apparently
broken. Why would that be broken?
Diffstat (limited to 'tests/tests.py')
-rw-r--r-- | tests/tests.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/tests.py b/tests/tests.py index 4cbcdf2..3443341 100644 --- a/tests/tests.py +++ b/tests/tests.py @@ -92,14 +92,6 @@ from pokemontools.crystal import ( import unittest -from helpers import ( - assemble_test_cases, - load_tests, - check_has_test, - find_untested_methods, - report_untested, -) - class TestCram(unittest.TestCase): "this is where i cram all of my unit tests together" |