(self)
| 1432 | self.assertIsNone(err) |
| 1433 | |
| 1434 | def test_decode(self): |
| 1435 | with open(os_helper.TESTFN, 'wb') as fp: |
| 1436 | fp.write(b'Yf9iCg==') |
| 1437 | output = self.get_output('-d', os_helper.TESTFN) |
| 1438 | self.assertEqual(output.rstrip(), b'a\xffb') |
| 1439 | |
| 1440 | def test_prints_usage_with_help_flag(self): |
| 1441 | output = self.get_output('-h') |
nothing calls this directly
no test coverage detected