Files that are not Python source files are not included.
(self)
| 127 | self.assertEqual(list(iterSourceCode([self.tempdir])), [childpath]) |
| 128 | |
| 129 | def test_onlyPythonSource(self): |
| 130 | """ |
| 131 | Files that are not Python source files are not included. |
| 132 | """ |
| 133 | self.makeEmptyFile('foo.pyc') |
| 134 | self.assertEqual(list(iterSourceCode([self.tempdir])), []) |
| 135 | |
| 136 | def test_recurses(self): |
| 137 | """ |
nothing calls this directly
no test coverage detected