Sha256: 5d1ce7ff6734daafee1df770b95a5e701db2811c22fe48075d60773cc00bd1f0
Contents?: true
Size: 785 Bytes
Versions: 57
Compression:
Stored size: 785 Bytes
Contents
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 '/deflate_service.html' When I call HTTParty#get with '/deflate_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 '/gzip_service.html' When I call HTTParty#get with '/gzip_service.html' Then the return value should match '<h1>Some HTML</h1>'
Version data entries
57 entries across 57 versions & 7 rubygems