Should display detailed error information if double verbose is on.
(self)
| 347 | self.validate_cmd("-v", path, stdout=stdout, partial=True) |
| 348 | |
| 349 | def test_double_verbose_mode(self): |
| 350 | """Should display detailed error information if double verbose is on.""" |
| 351 | with TemporaryPyFile(SOURCE_CODES["nannynag_errored"]) as path: |
| 352 | stdout = textwrap.dedent( |
| 353 | "offending line: '\\tprint(\"world\")'" |
| 354 | ).strip() |
| 355 | self.validate_cmd("-vv", path, stdout=stdout, partial=True) |
| 356 | |
| 357 | |
| 358 | class TestModule(TestCase): |
nothing calls this directly
no test coverage detected