(self, prefix, command)
| 73 | '1'])) |
| 74 | |
| 75 | def check_1_string_arg(self, prefix, command): |
| 76 | self.assertEqual({}, validate_command(sigdict, [prefix, command])) |
| 77 | self._assert_valid_command([prefix, command, 'string']) |
| 78 | self.assertEqual({}, validate_command(sigdict, [prefix, |
| 79 | command, |
| 80 | 'string', |
| 81 | 'toomany'])) |
| 82 | |
| 83 | def check_0_or_1_string_arg(self, prefix, command): |
| 84 | self._assert_valid_command([prefix, command, 'string']) |
no test coverage detected