Sha256: 95001b7cf1b3a1829525fcfe450582b0f65827ade88365f51bede3bd82dd6f42

Contents?: true

Size: 1.67 KB

Versions: 4

Compression:

Stored size: 1.67 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Client::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

4 entries across 4 versions & 1 rubygems

Version Path
github_api-0.12.3 spec/github/client/orgs/list_spec.rb
github_api-0.12.2 spec/github/client/orgs/list_spec.rb
github_api-0.12.1 spec/github/client/orgs/list_spec.rb
github_api-0.12.0 spec/github/client/orgs/list_spec.rb