(self)
| 42 | |
| 43 | class ParseJsonFuncsigs(unittest.TestCase): |
| 44 | def test_parse_json_funcsigs(self): |
| 45 | commands = get_command_descriptions("all") |
| 46 | cmd_json = parse_json_funcsigs(commands, 'cli') |
| 47 | |
| 48 | # syntax error https://github.com/ceph/ceph/pull/585 |
| 49 | commands = get_command_descriptions("pull585") |
| 50 | self.assertRaises(TypeError, parse_json_funcsigs, commands, 'cli') |
| 51 | |
| 52 | sigdict = parse_json_funcsigs(get_command_descriptions("all"), 'cli') |
| 53 |
nothing calls this directly
no test coverage detected