Sha256: 3252eb267d69bc1f39af69cf47c4d30ac685029e84a4be9a56e733b9f356aeb4

Contents?: true

Size: 1.41 KB

Versions: 15

Compression:

Stored size: 1.41 KB

Contents

# encoding: utf-8

require 'spec_helper'

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

  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/authorizations.json') }
    let(:status) { 200 }

    it { should respond_to :all }

    it "should fail to get resource without basic authentication" do
      reset_authentication_for subject
      expect { subject.list }.to raise_error(ArgumentError)
    end

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

    it_should_behave_like 'an array of resources' do
      let(:requestable) { subject.list }
    end

    it "should get authorization information" do
      authorizations = subject.list
      authorizations.first.token.should == 'abc123'
    end

    it "should yield to a block" do
      yielded = []
      result = subject.list { |obj| yielded << obj }
      yielded.should == result
    end
  end

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

end # authorizations

Version data entries

15 entries across 15 versions & 1 rubygems

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