diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-09-15 21:35:07 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-09-15 21:35:07 -0400 |
commit | f5da86062ed852cbe6bcf57cc23b1228f15de922 (patch) | |
tree | 3fa354093088521c2e072e4db5f1f87df966e6e9 /tests/test_testing.py | |
parent | f0b43b13fa9e1775e8b69ff894372db883965645 (diff) | |
download | python-coveragepy-git-f5da86062ed852cbe6bcf57cc23b1228f15de922.tar.gz |
Move test helpers into the coverage package so others can use them
--HG--
rename : tests/backunittest.py => coverage/backunittest.py
Diffstat (limited to 'tests/test_testing.py')
-rw-r--r-- | tests/test_testing.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/test_testing.py b/tests/test_testing.py index ddda4b00..4a19098f 100644 --- a/tests/test_testing.py +++ b/tests/test_testing.py @@ -2,16 +2,14 @@ """Tests that our test infrastructure is really working!""" import os, sys +from coverage.backunittest import TestCase from coverage.backward import to_bytes -from tests.backunittest import TestCase from tests.coveragetest import TempDirMixin, CoverageTest class TestingTest(TestCase): """Tests of helper methods on `backunittest.TestCase`.""" - run_in_temp_dir = False - def test_assert_count_equal(self): self.assertCountEqual(set(), set()) self.assertCountEqual(set([1,2,3]), set([3,1,2])) |