Sha256: 415d6403685cd6105c48387a7b6994d82adef4c2531442e80edf9bb100365337
Contents?: true
Size: 1.35 KB
Versions: 1
Compression:
Stored size: 1.35 KB
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 [ {:message => "Problems parsing JSON"}, {:error => "Body should be a JSON Hash"} ].each do |body| context "when the response body contains an error message" do before do stub_get('https://api.github.com/users/sferik'). to_return(:status => 400, :body => body) end it "should raise an error with the error message" do lambda do @client.user('sferik') end.should raise_error(Octokit::BadRequest, /#{body.values.first}/) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
octokit-1.17.0 | spec/faraday/response_spec.rb |