(self, services)
| 457 | self.session = mock.Mock(spec=Session) |
| 458 | |
| 459 | def create_command_table(self, services): |
| 460 | command_table = {} |
| 461 | for service in services: |
| 462 | command_table[service] = mock.Mock(spec=CLICommand) |
| 463 | return command_table |
| 464 | |
| 465 | def create_parser(self, command_table, extra_params=None): |
| 466 | parser = MainArgParser( |
no outgoing calls
no test coverage detected