(*_a: object, **kwargs: object)
| 108 | out = _pydantic_schema_str(Clean) |
| 109 | parsed = json.loads(out) |
| 110 | # Clean schema path -> emits standard "properties" key. |
| 111 | self.assertIn("properties", parsed) |
| 112 | |
| 113 | def test_annotated_union_emits_one_of(self) -> None: |
| 114 | out = _pydantic_schema_str(PaperInput) |
| 115 | parsed = json.loads(out) |
nothing calls this directly
no outgoing calls
no test coverage detected