(self, **kwargs)
| 323 | |
| 324 | class TestLRUDict: |
| 325 | def init_cache(self, **kwargs): |
| 326 | cache = LRUDict(CACHE_NAME, table_name='lru', use_temp=True, **kwargs) |
| 327 | cache.clear() |
| 328 | return cache |
| 329 | |
| 330 | @classmethod |
| 331 | def teardown_class(cls): |
no test coverage detected