summaryrefslogtreecommitdiff
path: root/tests/test_arcs.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2016-01-01 13:38:06 -0500
committerNed Batchelder <ned@nedbatchelder.com>2016-01-01 13:38:06 -0500
commitd6e221c8058259460cadfe62d5ca1bb0d93822cc (patch)
treeab1e46401f52ca0c24107243fef45c52f4163a22 /tests/test_arcs.py
parent9edd625b8fdb09b5494471d460eba11148104e28 (diff)
downloadpython-coveragepy-git-d6e221c8058259460cadfe62d5ca1bb0d93822cc.tar.gz
test_arcs now passes for all Python versions
--HG-- branch : ast-branch
Diffstat (limited to 'tests/test_arcs.py')
-rw-r--r--tests/test_arcs.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/test_arcs.py b/tests/test_arcs.py
index a9533e78..ea79d495 100644
--- a/tests/test_arcs.py
+++ b/tests/test_arcs.py
@@ -342,7 +342,7 @@ class LoopArcTest(CoverageTest):
""",
arcz=arcz, arcz_missing="", arcz_unpredicted="")
- def test_other_comprehensions(self):
+ def test_generator_expression(self):
# Generator expression:
self.check_coverage("""\
o = ((1,2), (3,4))
@@ -354,6 +354,10 @@ class LoopArcTest(CoverageTest):
arcz=".1 .2 2-2 12 23 34 45 53 3.",
arcz_missing="", arcz_unpredicted=""
)
+
+ def test_other_comprehensions(self):
+ if env.PYVERSION < (2, 7):
+ self.skip("Don't have set or dict comprehensions before 2.7")
# Set comprehension:
self.check_coverage("""\
o = ((1,2), (3,4))