(self, args)
| 55 | class TestArgparse(unittest.TestCase): |
| 56 | |
| 57 | def _assert_valid_command(self, args): |
| 58 | result = validate_command(sigdict, args) |
| 59 | self.assertNotIn(result, [{}, None]) |
| 60 | |
| 61 | def check_1_natural_arg(self, prefix, command): |
| 62 | self._assert_valid_command([prefix, command, '1']) |
no test coverage detected