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
commit6909584fca1e4f9e72caf3254a5f2fddec76a840 (patch)
treecbdbb45c69302608c65413c844acef4e7cdceee9 /tests/test_backward.py
parent3b620df38e922496b3b26351686475326e820bb5 (diff)
downloadpython-coveragepy-6909584fca1e4f9e72caf3254a5f2fddec76a840.tar.gz
Move test helpers into the coverage package so others can use them
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 2c688ed..09803ba 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)]