Should display usage on no arguments.
(self)
| 330 | self.validate_cmd(file_path) |
| 331 | |
| 332 | def test_command_usage(self): |
| 333 | """Should display usage on no arguments.""" |
| 334 | path = findfile('tabnanny.py') |
| 335 | stderr = f"Usage: {path} [-v] file_or_directory ..." |
| 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.""" |
nothing calls this directly
no test coverage detected