diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2019-06-18 21:50:50 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2019-06-19 06:00:35 -0400 |
commit | 7a7a93d7abc710f11c93a6f0a4edbea7cb0c47e5 (patch) | |
tree | ca8c5f089d8bf59b66ed65d99d96e0e5a4c86a48 /tests/test_testing.py | |
parent | f36c3acd2f236cebbac254fc9c71e2080cbfece2 (diff) | |
download | python-coveragepy-git-7a7a93d7abc710f11c93a6f0a4edbea7cb0c47e5.tar.gz |
Move arcz_to_arcs to misc so we can use it elsewhere
Diffstat (limited to 'tests/test_testing.py')
-rw-r--r-- | tests/test_testing.py | 8 |
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") |