diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2013-10-19 21:21:10 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2013-10-19 21:21:10 -0400 |
commit | 18ba48b6b119f07f5c738c7fd36c2d2ede04f67e (patch) | |
tree | 17a656943635c42860d4b3751532468f952bd6c3 /tests/test_config.py | |
parent | b257ecb0bdcfae09d74ab95ad621bed19934b555 (diff) | |
download | python-coveragepy-git-18ba48b6b119f07f5c738c7fd36c2d2ede04f67e.tar.gz |
We only run on 2.6, 2.7, 3.2, 3.3 now.
--HG--
branch : 4.0
Diffstat (limited to 'tests/test_config.py')
-rw-r--r-- | tests/test_config.py | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/tests/test_config.py b/tests/test_config.py index 6d370255..c44fa80c 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -211,15 +211,14 @@ class ConfigFileTest(CoverageTest): 'other': ['other', '/home/ned/other', 'c:\\Ned\\etc'] }) - if sys.version_info[:2] != (3,1): - def test_one(self): - # This sample file tries to use lots of variation of syntax... - self.make_file(".coveragerc", """\ - [html] - title = tabblo & «ταБЬℓσ» # numbers - """) - cov = coverage.coverage() - - self.assertEqual(cov.config.html_title, - "tabblo & «ταБЬℓσ» # numbers" - ) + def test_one(self): + # This sample file tries to use lots of variation of syntax... + self.make_file(".coveragerc", """\ + [html] + title = tabblo & «ταБЬℓσ» # numbers + """) + cov = coverage.coverage() + + self.assertEqual(cov.config.html_title, + "tabblo & «ταБЬℓσ» # numbers" + ) |