There are no Python files in an empty directory.
(self)
| 113 | return fpath |
| 114 | |
| 115 | def test_emptyDirectory(self): |
| 116 | """ |
| 117 | There are no Python files in an empty directory. |
| 118 | """ |
| 119 | self.assertEqual(list(iterSourceCode([self.tempdir])), []) |
| 120 | |
| 121 | def test_singleFile(self): |
| 122 | """ |
nothing calls this directly
no test coverage detected