(self)
| 170 | self.assertEqual(found, self.NOT_FOUND) |
| 171 | |
| 172 | def test_ignore_file(self): |
| 173 | # If a directory got changed to a file from underneath us, then don't |
| 174 | # worry about looking for submodules. |
| 175 | with tempfile.NamedTemporaryFile() as file_obj: |
| 176 | finder = self.get_finder(file_obj.name) |
| 177 | found = self._find(finder, 'doesnotexist') |
| 178 | self.assertEqual(found, self.NOT_FOUND) |
| 179 | |
| 180 | |
| 181 | class FinderTestsPEP451(FinderTests): |
nothing calls this directly
no test coverage detected