Sha256: 0824656ef593a664cef414038f351b39cae21b32242a3943f38060f1413d4016

Contents?: true

Size: 1.36 KB

Versions: 1

Compression:

Stored size: 1.36 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 nil }.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

1 entries across 1 versions & 1 rubygems

Version Path
github_api-0.9.0 spec/github/authorizations/get_spec.rb