(self, sut: SchemaCache)
| 68 | |
| 69 | class TestHas: |
| 70 | def test_false_when_not_cached(self, sut: SchemaCache) -> None: |
| 71 | assert sut.has("6000.2.6f2") is False |
| 72 | |
| 73 | def test_true_after_put(self, sut: SchemaCache, sample_schema: dict[str, Any]) -> None: |
| 74 | sut.put("6000.2.6f2", sample_schema) |