(self)
| 11 | class TestCache(MgrTestCase): |
| 12 | |
| 13 | def setUp(self): |
| 14 | log.info("TestCache setup") |
| 15 | super(TestCache, self).setUp() |
| 16 | log.info("Setting up mgrs") |
| 17 | self.setup_mgrs() |
| 18 | log.info("Loading cli_api module") |
| 19 | self._load_module("cli_api") |
| 20 | log.info("Enabling cache") |
| 21 | self.enable_cache() |
| 22 | |
| 23 | def enable_cache(self, on=True): |
| 24 | cache_set = 'true' if on else 'false' |
nothing calls this directly
no test coverage detected