()
| 31 | |
| 32 | |
| 33 | def test_python_parse_numeric(): |
| 34 | parsed = jiter.from_json( |
| 35 | b' { "int": 1, "bigint": 123456789012345678901234567890, "float": 1.2} ' |
| 36 | ) |
| 37 | assert parsed == {'int': 1, 'bigint': 123456789012345678901234567890, 'float': 1.2} |
| 38 | |
| 39 | |
| 40 | def test_python_parse_other_cached(): |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…