From c7f90f9e930835a955df59bffe96e996dfcf11a0 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 29 Sep 2009 22:21:48 -0400 Subject: Working toward reading source from eggs, but this isn't right on Py3k yet. --- test/test_codeunit.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'test/test_codeunit.py') diff --git a/test/test_codeunit.py b/test/test_codeunit.py index 36ca1fc..0c2fc98 100644 --- a/test/test_codeunit.py +++ b/test/test_codeunit.py @@ -71,3 +71,12 @@ class CodeUnitTest(CoverageTest): assert zcu > acu and zcu >= acu and zcu != acu assert acu < bcu and acu <= bcu and acu != bcu assert bcu > acu and bcu >= acu and bcu != acu + + def test_egg(self): + import egg1, egg1.egg1 + 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], + "# My egg file!" + ) + \ No newline at end of file -- cgit v1.2.1