Тесты: часть 1

This commit is contained in:
2025-10-28 09:58:44 +03:00
parent 21c7ddfd54
commit 6bffe6a9e1
21 changed files with 2843 additions and 3 deletions

31
tests/fixtures/minimal.json vendored Normal file
View File

@@ -0,0 +1,31 @@
{
"openapi": "3.0.0",
"info": {
"title": "Minimal API",
"version": "1.0.0"
},
"paths": {
"/hello": {
"get": {
"operationId": "getHello",
"responses": {
"200": {
"description": "Success",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"message": {
"type": "string"
}
}
}
}
}
}
}
}
}
}
}