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