A python source code file eligible for raising `tabnanny.NannyNag`.
(self)
| 233 | |
| 234 | @unittest.expectedFailure # TODO: RUSTPYTHON; A python source code file eligible for raising `tabnanny.NannyNag`. |
| 235 | def test_when_nannynag_error(self): |
| 236 | """A python source code file eligible for raising `tabnanny.NannyNag`.""" |
| 237 | with TemporaryPyFile(SOURCE_CODES["nannynag_errored"]) as file_path: |
| 238 | out = f"{file_path} 3 '\\tprint(\"world\")'\n" |
| 239 | self.verify_tabnanny_check(file_path, out=out) |
| 240 | |
| 241 | def test_when_no_file(self): |
| 242 | """A python file which does not exist actually in system.""" |
nothing calls this directly
no test coverage detected