()
| 47 | |
| 48 | |
| 49 | def test_python_parse_other_no_cache(): |
| 50 | parsed = jiter.from_json( |
| 51 | b'["string", true, false, null]', |
| 52 | cache_mode=False, |
| 53 | ) |
| 54 | assert parsed == ['string', True, False, None] |
| 55 | |
| 56 | |
| 57 | def test_python_disallow_nan(): |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…