(self, *args)
| 1092 | sys.stderr = orig_stderr |
| 1093 | |
| 1094 | def run_cli_ok(self, *args): |
| 1095 | with self.captured_stdout_with_buffer() as stdout: |
| 1096 | calendar.main(args) |
| 1097 | return stdout.buffer.read() |
| 1098 | |
| 1099 | def run_cmd_ok(self, *args): |
| 1100 | return assert_python_ok('-m', 'calendar', *args)[1] |
nothing calls this directly
no test coverage detected