()
| 81 | |
| 82 | |
| 83 | def test_schema_set_is_array(): |
| 84 | api = OpenAPI() |
| 85 | schema = api.get_schema_object("tags", set[str]) |
| 86 | assert schema["type"] == "array" |
| 87 | assert schema["items"]["type"] == "string" |
| 88 | |
| 89 | |
| 90 | def test_schema_any_has_no_type(): |
nothing calls this directly
no test coverage detected