()
| 46 | |
| 47 | |
| 48 | def test_cache_with_number(): |
| 49 | c = Cache(10000, limit=1) |
| 50 | assert isinstance(c.cache, cachey.Cache) |
| 51 | assert c.cache.available_bytes == 10000 |
| 52 | assert c.cache.limit == 1 |
| 53 | |
| 54 | |
| 55 | def test_cache_correctness(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…