(self, *args, **kwargs)
| 3446 | class CommandLineTest(unittest.TestCase): |
| 3447 | |
| 3448 | def zipfilecmd(self, *args, **kwargs): |
| 3449 | rc, out, err = script_helper.assert_python_ok('-m', 'zipfile', *args, |
| 3450 | **kwargs) |
| 3451 | return out.replace(os.linesep.encode(), b'\n') |
| 3452 | |
| 3453 | def zipfilecmd_failure(self, *args): |
| 3454 | return script_helper.assert_python_failure('-m', 'zipfile', *args) |
no test coverage detected