Should display less when quite mode is on.
(self)
| 336 | self.validate_cmd(stderr=stderr, expect_failure=True) |
| 337 | |
| 338 | def test_quiet_flag(self): |
| 339 | """Should display less when quite mode is on.""" |
| 340 | with TemporaryPyFile(SOURCE_CODES["nannynag_errored"]) as file_path: |
| 341 | stdout = f"{file_path}\n" |
| 342 | self.validate_cmd("-q", file_path, stdout=stdout) |
| 343 | |
| 344 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 345 | def test_verbose_mode(self): |
nothing calls this directly
no test coverage detected