mirror of
https://github.com/jnunemaker/httparty
synced 2023-03-27 23:23:07 -04:00
2febfe3c83
version. No features for the CLI yet. Signed-off-by: John Nunemaker <nunemaker@gmail.com>
26 lines
1.1 KiB
Gherkin
26 lines
1.1 KiB
Gherkin
Feature: Deals with HTTP error codes
|
|
|
|
As a developer
|
|
I want to be informed of non-successful responses
|
|
Because sometimes thing explode
|
|
And I should probably know what happened
|
|
|
|
Scenario: A response of '404 - Not Found'
|
|
Given a remote service that returns a 404 status code
|
|
And that service is accessed at the path '/service.html'
|
|
When I call HTTParty#get with '/service.html'
|
|
Then it should return a response with a 404 response code
|
|
|
|
Scenario: A response of '500 - Internal Server Error'
|
|
Given a remote service that returns a 500 status code
|
|
And that service is accessed at the path '/service.html'
|
|
When I call HTTParty#get with '/service.html'
|
|
Then it should return a response with a 500 response code
|
|
|
|
Scenario: A non-successful response where I need the body
|
|
Given a remote service that returns a 400 status code
|
|
And the response from the service has a body of 'Bad response'
|
|
And that service is accessed at the path '/service.html'
|
|
When I call HTTParty#get with '/service.html'
|
|
Then it should return a response with a 400 response code
|
|
And the return value should match 'Bad response'
|