A python source code file without any errors.
(self)
| 165 | self.assertEqual(stderr.getvalue(), err) |
| 166 | |
| 167 | def test_correct_file(self): |
| 168 | """A python source code file without any errors.""" |
| 169 | with TemporaryPyFile(SOURCE_CODES["error_free"]) as file_path: |
| 170 | self.verify_tabnanny_check(file_path) |
| 171 | |
| 172 | def test_correct_directory_verbose(self): |
| 173 | """Directory containing few error free python source code files. |
nothing calls this directly
no test coverage detected