()
| 253 | |
| 254 | |
| 255 | def test_python_cache_usage_none(): |
| 256 | jiter.cache_clear() |
| 257 | parsed = jiter.from_json( |
| 258 | b'{"foo": "bar", "spam": 3}', |
| 259 | cache_mode='none', |
| 260 | ) |
| 261 | assert parsed == {'foo': 'bar', 'spam': 3} |
| 262 | assert jiter.cache_usage() == 0 |
| 263 | |
| 264 | |
| 265 | def test_use_tape(): |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…