summaryrefslogtreecommitdiff
path: root/tests/test_testing.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_testing.py')
-rw-r--r--tests/test_testing.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/test_testing.py b/tests/test_testing.py
index 2d9aeb21..4a4a013c 100644
--- a/tests/test_testing.py
+++ b/tests/test_testing.py
@@ -41,14 +41,6 @@ class TestingTest(TestCase):
class CoverageTestTest(CoverageTest):
"""Test the methods in `CoverageTest`."""
- def test_arcz_to_arcs(self):
- self.assertEqual(self.arcz_to_arcs(".1 12 2."), [(-1, 1), (1, 2), (2, -1)])
- self.assertEqual(self.arcz_to_arcs("-11 12 2-5"), [(-1, 1), (1, 2), (2, -5)])
- self.assertEqual(
- self.arcz_to_arcs("-QA CB IT Z-A"),
- [(-26, 10), (12, 11), (18, 29), (35, -10)]
- )
-
def test_file_exists(self):
self.make_file("whoville.txt", "We are here!")
self.assert_exists("whoville.txt")