(self)
| 1443 | self.assertIn(b'-d, -u: decode', output) |
| 1444 | |
| 1445 | def test_prints_usage_with_invalid_flag(self): |
| 1446 | output = script_helper.assert_python_failure('-m', 'base64', '-x').err |
| 1447 | self.assertIn(b'usage: ', output) |
| 1448 | self.assertIn(b'-d, -u: decode', output) |
| 1449 | |
| 1450 | if __name__ == '__main__': |
| 1451 | unittest.main() |
nothing calls this directly
no test coverage detected