(self)
| 277 | cache.decr_version("does_not_exist") |
| 278 | |
| 279 | def test_get_or_set(self): |
| 280 | self.assertEqual(cache.get_or_set("mykey", "default"), "default") |
| 281 | self.assertIsNone(cache.get_or_set("mykey", None)) |
| 282 | |
| 283 | def test_get_or_set_callable(self): |
| 284 | def my_callable(): |
nothing calls this directly
no test coverage detected