()
| 16 | |
| 17 | |
| 18 | def test_set_dirty(): |
| 19 | cache = StylesCache() |
| 20 | cache.set_dirty(Region(3, 4, 10, 2)) |
| 21 | assert not cache.is_dirty(3) |
| 22 | assert cache.is_dirty(4) |
| 23 | assert cache.is_dirty(5) |
| 24 | assert not cache.is_dirty(6) |
| 25 | |
| 26 | |
| 27 | def test_border(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…