(self, command_table, extra_params=None)
| 463 | return command_table |
| 464 | |
| 465 | def create_parser(self, command_table, extra_params=None): |
| 466 | parser = MainArgParser( |
| 467 | command_table=command_table, |
| 468 | version_string='version', |
| 469 | description='description', |
| 470 | argument_table={}, |
| 471 | ) |
| 472 | if extra_params: |
| 473 | for extra_param in extra_params: |
| 474 | parser.add_argument('--' + extra_param) |
| 475 | return parser |
| 476 | |
| 477 | def test_alias_with_only_service_command(self): |
| 478 | alias_value = 'myservice' |
no test coverage detected