1
0
Fork 0
mirror of https://github.com/jnunemaker/httparty synced 2023-03-27 23:23:07 -04:00
httparty/features/handles_compressed_responses.feature
Sandro Turriate ad6b06d605 Decode gzip'd responses like Ruby 1.9
Thanks to carsonmcdonald for the inspiration
Closes gh-40
2010-06-12 00:48:52 -04:00

19 lines
759 B
Gherkin

Feature: Handles Compressed Responses
In order to save bandwidth
As a developer
I want to uncompress compressed responses
Scenario: Supports deflate encoding
Given a remote deflate service
And the response from the service has a body of '<h1>Some HTML</h1>'
And that service is accessed at the path '/service.html'
When I call HTTParty#get with '/service.html'
Then the return value should match '<h1>Some HTML</h1>'
Scenario: Supports gzip encoding
Given a remote gzip service
And the response from the service has a body of '<h1>Some HTML</h1>'
And that service is accessed at the path '/service.html'
When I call HTTParty#get with '/service.html'
Then the return value should match '<h1>Some HTML</h1>'