(self, *args, **kwargs)
| 2825 | class CommandLineTest(unittest.TestCase): |
| 2826 | |
| 2827 | def tarfilecmd(self, *args, **kwargs): |
| 2828 | rc, out, err = script_helper.assert_python_ok('-m', 'tarfile', *args, |
| 2829 | **kwargs) |
| 2830 | return out.replace(os.linesep.encode(), b'\n') |
| 2831 | |
| 2832 | def tarfilecmd_failure(self, *args): |
| 2833 | return script_helper.assert_python_failure('-m', 'tarfile', *args) |
no test coverage detected