Should not display anything if python file is correctly indented.
(self)
| 322 | self.validate_cmd(file_path, stderr=stderr, expect_failure=True) |
| 323 | |
| 324 | def test_with_error_free_file(self): |
| 325 | """Should not display anything if python file is correctly indented.""" |
| 326 | with TemporaryPyFile(SOURCE_CODES["error_free"]) as file_path: |
| 327 | self.validate_cmd(file_path) |
| 328 | |
| 329 | def test_command_usage(self): |
| 330 | """Should display usage on no arguments.""" |
nothing calls this directly
no test coverage detected