()
| 19 | |
| 20 | |
| 21 | def test_validate_structured_ok(): |
| 22 | ok, err = validate_structured({"name": "x", "age": 3}, _SCHEMA) |
| 23 | assert ok is True |
| 24 | assert err is None |
| 25 | |
| 26 | |
| 27 | def test_validate_structured_missing_required(): |
nothing calls this directly
no test coverage detected