Sha256: 334c898c6fa892a781b779cf5872d5f322f710eb76bf444dca49dc5004c66776

Contents?: true

Size: 1.66 KB

Versions: 21

Compression:

Stored size: 1.66 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Orgs, '#list' do
  let(:user) { 'peter-murach' }
  let(:body) { fixture('orgs/orgs.json') }
  let(:status) { 200 }

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

  after { reset_authentication_for(subject) }

  context "resource found for a user" do
    let(:request_path) { "/users/#{user}/orgs" }

    it "should get the resources" do
      subject.list :user => user
      a_get(request_path).should have_been_made
    end

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

    it "should get org information" do
      orgs = subject.list :user => user
      orgs.first.login.should == 'github'
    end

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

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

  context "resource found for an au user" do
    let(:request_path) { "/user/orgs" }

    before do
      subject.oauth_token = OAUTH_TOKEN
      stub_get(request_path).
        with(:query => { :access_token => OAUTH_TOKEN }).
        to_return(:body => fixture('orgs/orgs.json'), :status => status,
          :headers => {:content_type => "application/json; charset=utf-8"})
    end

    it "should get the resources" do
      subject.list
      a_get(request_path).with(:query => { :access_token => OAUTH_TOKEN }).
        should have_been_made
    end
  end

end # list

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
github_api-0.11.3 spec/github/orgs/list_spec.rb
github_api-0.11.2 spec/github/orgs/list_spec.rb
github_api-0.11.1 spec/github/orgs/list_spec.rb
github_api-0.11.0 spec/github/orgs/list_spec.rb
github_api-0.10.2 spec/github/orgs/list_spec.rb
github_api-0.10.1 spec/github/orgs/list_spec.rb
github_api-0.10.0 spec/github/orgs/list_spec.rb
github_api-0.9.7 spec/github/orgs/list_spec.rb
github_api-0.9.6 spec/github/orgs/list_spec.rb
github_api-0.9.5 spec/github/orgs/list_spec.rb
github_api-0.9.4 spec/github/orgs/list_spec.rb
github_api-0.9.3 spec/github/orgs/list_spec.rb
github_api-0.9.2 spec/github/orgs/list_spec.rb
github_api-0.9.1 spec/github/orgs/list_spec.rb
github_api-0.9.0 spec/github/orgs/list_spec.rb
github_api-0.8.11 spec/github/orgs/list_spec.rb
github_api-0.8.10 spec/github/orgs/list_spec.rb
github_api-0.8.9 spec/github/orgs/list_spec.rb
github_api-0.8.8 spec/github/orgs/list_spec.rb
github_api-0.8.7 spec/github/orgs/list_spec.rb