Skip to content

Commit

Permalink
test: add test to verify headers are supported (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinEberhardt authored Mar 8, 2023
1 parent 733af31 commit a8fca00
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions features/response.feature
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,32 @@ Feature: API responses, including model object deserialization
Then the response should have a property dateOne with value 2013-07-21T00:00:00.000Z
And the response should have a property dateTwo with value 2012-07-21T00:00:00.000Z

Scenario: the API returns headers
Given an API with the following specification
"""
{
"openapi":"3.0.2",
"info" : {"title": "test", "version": "0.0.0"},
"paths": {
"/test/get": {
"get": {
"operationId": "getResponse",
"responses": {
"200": {
"description": "successful operation"
}
}
}
}
}
}
"""
When calling the method getResponse and the server responds with headers
"""
{"foo": "bar"}
"""
Then the response should have a header foo with value bar

Scenario: a response that lacks content
Given an API with the following specification
"""
Expand Down

0 comments on commit a8fca00

Please sign in to comment.