diff options
author | Danny Allen <me@dannya.com> | 2014-09-22 12:05:55 +0100 |
---|---|---|
committer | Danny Allen <me@dannya.com> | 2014-09-22 12:05:55 +0100 |
commit | 1b6d0d06624170fb7a17738387387b1f21357e94 (patch) | |
tree | 335402fdef527656f37d3024345c9b532592bce7 /tests/test_backward.py | |
parent | c4935999f882e7317121e884629d07080f1bc776 (diff) | |
parent | d68b95f7a0a201b2e8e830b6d4769005ef0223fa (diff) | |
download | python-coveragepy-git-1b6d0d06624170fb7a17738387387b1f21357e94.tar.gz |
Merged ned/coveragepy into default
Diffstat (limited to 'tests/test_backward.py')
-rw-r--r-- | tests/test_backward.py | 4 |
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)] |