(self)
| 1025 | |
| 1026 | class TestServiceCommand(unittest.TestCase): |
| 1027 | def setUp(self): |
| 1028 | self.name = 'foo' |
| 1029 | self.session = FakeSession() |
| 1030 | self.session.set_config_variable('cli_help_output', None) |
| 1031 | self.cmd = ServiceCommand(self.name, self.session) |
| 1032 | |
| 1033 | def test_can_access_subcommand_table(self): |
| 1034 | table = self.cmd.subcommand_table |
nothing calls this directly
no test coverage detected