Sha256: 37c9c3b2a47f9d15e095c418f5cba2cd80a6d16f0a0f6c6b2abaaa79532d2644

Contents?: true

Size: 1.35 KB

Versions: 14

Compression:

Stored size: 1.35 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Authorizations, '#get' do
  let(:basic_auth) { 'login:password' }
  let(:request_path) { "/authorizations/#{authorization_id}" }
  let(:host) { "https://#{basic_auth}@api.github.com" }
  let(:authorization_id) { 1 }

  before {
    stub_get(request_path, host).to_return(:body => body, :status => status,
      :headers => {:content_type => "application/json; charset=utf-8"})
  }

  before { subject.basic_auth = basic_auth }

  after { reset_authentication_for(subject) }

  context "resource found" do
    let(:body) { fixture('auths/authorization.json') }
    let(:status) { 200 }

    it "should fail to get resource without authorization id" do
      expect { subject.get }.to raise_error(ArgumentError)
    end

    it "should get the resource" do
      subject.get authorization_id
      a_get(request_path, host).should have_been_made
    end

    it "should get authorization information" do
      authorization = subject.get authorization_id
      authorization.id.should == authorization_id
      authorization.token.should == 'abc123'
    end

    it "should return mash" do
      authorization = subject.get authorization_id
      authorization.should be_a Github::ResponseWrapper
    end
  end

  it_should_behave_like 'request failure' do
    let(:requestable) { subject.get authorization_id }
  end

end # list

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
github_api-0.11.3 spec/github/authorizations/get_spec.rb
github_api-0.11.2 spec/github/authorizations/get_spec.rb
github_api-0.11.1 spec/github/authorizations/get_spec.rb
github_api-0.11.0 spec/github/authorizations/get_spec.rb
github_api-0.10.2 spec/github/authorizations/get_spec.rb
github_api-0.10.1 spec/github/authorizations/get_spec.rb
github_api-0.10.0 spec/github/authorizations/get_spec.rb
github_api-0.9.7 spec/github/authorizations/get_spec.rb
github_api-0.9.6 spec/github/authorizations/get_spec.rb
github_api-0.9.5 spec/github/authorizations/get_spec.rb
github_api-0.9.4 spec/github/authorizations/get_spec.rb
github_api-0.9.3 spec/github/authorizations/get_spec.rb
github_api-0.9.2 spec/github/authorizations/get_spec.rb
github_api-0.9.1 spec/github/authorizations/get_spec.rb