summaryrefslogtreecommitdiff
path: root/tests/test_backward.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2014-09-15 21:35:07 -0400
committerNed Batchelder <ned@nedbatchelder.com>2014-09-15 21:35:07 -0400
commitf5da86062ed852cbe6bcf57cc23b1228f15de922 (patch)
tree3fa354093088521c2e072e4db5f1f87df966e6e9 /tests/test_backward.py
parentf0b43b13fa9e1775e8b69ff894372db883965645 (diff)
downloadpython-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_backward.py')
-rw-r--r--tests/test_backward.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/test_backward.py b/tests/test_backward.py
index 2c688edd..09803ba7 100644
--- a/tests/test_backward.py
+++ b/tests/test_backward.py
@@ -1,14 +1,12 @@
"""Tests that our version shims in backward.py are working."""
+from coverage.backunittest import TestCase
from coverage.backward import iitems, binary_bytes, byte_to_int, bytes_to_ints
-from tests.backunittest import TestCase
class BackwardTest(TestCase):
"""Tests of things from backward.py."""
- run_in_temp_dir = False
-
def test_iitems(self):
d = {'a': 1, 'b': 2, 'c': 3}
items = [('a', 1), ('b', 2), ('c', 3)]