(self)
| 33 | class TestExpiringLocalCache(unittest.TestCase): |
| 34 | |
| 35 | def setUp(self): |
| 36 | self.cache = ExpiringLocalCache(cron_interval=10) |
| 37 | |
| 38 | def test_set_and_get(self): |
| 39 | self.cache.set('key', 'value', 10) |
nothing calls this directly
no test coverage detected