diff --git a/tests/IssueTest.php b/tests/IssueTest.php new file mode 100644 index 0000000..a350d5b --- /dev/null +++ b/tests/IssueTest.php @@ -0,0 +1,13 @@ +assertInstanceOf(\cebe\openapi\SpecObjectInterface::class, $openapi); + } +} diff --git a/tests/data/issue/175/401.json b/tests/data/issue/175/401.json new file mode 100644 index 0000000..eb4f5c9 --- /dev/null +++ b/tests/data/issue/175/401.json @@ -0,0 +1,20 @@ +{ + "description": "401 response", + "content": { + "application/json": { + "schema": { + "properties": { + "message": { + "type": "string" + } + }, + "required": [ + "message" + ] + }, + "example": { + "message": "Unauthenticated." + } + } + } +} diff --git a/tests/data/issue/175/spec.json b/tests/data/issue/175/spec.json new file mode 100644 index 0000000..5cea046 --- /dev/null +++ b/tests/data/issue/175/spec.json @@ -0,0 +1,20 @@ +{ + "openapi": "3.0.0", + "info": { + "title": "My API", + "version": "1, 2" + }, + "paths": { + "/v1/users/profile": { + "get": { + "operationId": "V1GetUserProfile", + "summary": "Returns the user profile", + "responses": { + "401": { + "$ref": "./401.json" + } + } + } + } + } +}