(self, *args)
| 1417 | os.unlink(os_helper.TESTFN) |
| 1418 | |
| 1419 | def get_output(self, *args): |
| 1420 | return script_helper.assert_python_ok('-m', 'base64', *args).out |
| 1421 | |
| 1422 | def test_encode_file(self): |
| 1423 | with open(os_helper.TESTFN, 'wb') as fp: |
no test coverage detected