Sha256: e4fc68e0643024584aab537d39bbc7cf485fe6598ffc0e0e3b98bf5d8f9e6a54
Contents?: true
Size: 858 Bytes
Versions: 33
Compression:
Stored size: 858 Bytes
Contents
# -*- encoding: utf-8 -*- require 'helper' describe Faraday::Response do before do @client = Octokit::Client.new end { 400 => Octokit::BadRequest, 401 => Octokit::Unauthorized, 403 => Octokit::Forbidden, 404 => Octokit::NotFound, 406 => Octokit::NotAcceptable, 422 => Octokit::UnprocessableEntity, 500 => Octokit::InternalServerError, 501 => Octokit::NotImplemented, 502 => Octokit::BadGateway, 503 => Octokit::ServiceUnavailable, }.each do |status, exception| context "when HTTP status is #{status}" do before do stub_get('https://api.github.com/users/sferik'). to_return(:status => status) end it "should raise #{exception.name} error" do lambda do @client.user('sferik') end.should raise_error(exception) end end end end
Version data entries
33 entries across 33 versions & 1 rubygems