Should display more error information if verbose mode is on.
(self)
| 343 | |
| 344 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 345 | def test_verbose_mode(self): |
| 346 | """Should display more error information if verbose mode is on.""" |
| 347 | with TemporaryPyFile(SOURCE_CODES["nannynag_errored"]) as path: |
| 348 | stdout = textwrap.dedent( |
| 349 | "offending line: '\\tprint(\"world\")'" |
| 350 | ).strip() |
| 351 | self.validate_cmd("-v", path, stdout=stdout, partial=True) |
| 352 | |
| 353 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 354 | def test_double_verbose_mode(self): |
nothing calls this directly
no test coverage detected