diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-12-21 07:40:45 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-12-21 07:40:45 -0500 |
commit | 9addc84bb39eddeccd31ee5a5f0fa387591e35dd (patch) | |
tree | 38d07a7c4e150ec765af25e3268376b84fd81c1a /test | |
parent | fc38bf8526cb1717968a1958439da5fae4768375 (diff) | |
download | python-coveragepy-git-9addc84bb39eddeccd31ee5a5f0fa387591e35dd.tar.gz |
The egg test wasn't working properly. Thanks, py2.3, for pointing this out
Diffstat (limited to 'test')
-rw-r--r-- | test/eggsrc/setup.py | 2 | ||||
-rw-r--r-- | test/test_codeunit.py | 7 |
2 files changed, 9 insertions, 0 deletions
diff --git a/test/eggsrc/setup.py b/test/eggsrc/setup.py index 6a88a58b..f9b8b9d0 100644 --- a/test/eggsrc/setup.py +++ b/test/eggsrc/setup.py @@ -3,4 +3,6 @@ from setuptools import setup setup( name="covtestegg1", packages=['egg1'], + zip_safe=True, + install_requires=[], ) diff --git a/test/test_codeunit.py b/test/test_codeunit.py index b543949c..a568fe56 100644 --- a/test/test_codeunit.py +++ b/test/test_codeunit.py @@ -89,7 +89,14 @@ class CodeUnitTest(CoverageTest): assert bcu > acu and bcu >= acu and bcu != acu def test_egg(self): + # Test that we can get files out of eggs, and read their source files. + # The egg1 module is installed by an action in igor.py. import egg1, egg1.egg1 + # Verify that we really imported from an egg. If we did, then the + # __file__ won't be an actual file, because one of the "directories" + # in the path is actually the .egg zip file. + self.assert_doesnt_exist(egg1.__file__) + cu = code_unit_factory([egg1, egg1.egg1], FileLocator()) self.assertEqual(cu[0].source_file().read(), "") self.assertEqual(cu[1].source_file().read().split("\n")[0], |