Sha256: 42a07f626a327015ba53d4ffbe7bc9afb46197253f91a564f8ebc9a543efdefc
Contents?: true
Size: 1.01 KB
Versions: 4
Compression:
Stored size: 1.01 KB
Contents
require File.expand_path('../../spec_helper', __FILE__) describe Faraday::Response do before do @client = Instagram::Client.new end { 400 => Instagram::BadRequest, 404 => Instagram::NotFound, 500 => Instagram::InternalServerError, 503 => Instagram::ServiceUnavailable }.each do |status, exception| context "when HTTP status is #{status}" do before do stub_get('users/self/feed.json'). to_return(:status => status) end it "should raise #{exception.name} error" do lambda do @client.user_media_feed() end.should raise_error(exception) end end end context "when a 400 is raised" do before do stub_get('users/self/feed.json'). to_return(:body => '{"meta":{"error_message": "Bad words are bad."}}', :status => 400) end it "should return the body error message" do expect do @client.user_media_feed() end.to raise_error(Instagram::BadRequest, /Bad words are bad./) end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
instagram-0.11.0 | spec/faraday/response_spec.rb |
instagram-0.10.0 | spec/faraday/response_spec.rb |
instagram-0.9.1 | spec/faraday/response_spec.rb |
instagram-0.9.0 | spec/faraday/response_spec.rb |