Sha256: beb342d53585c0c05bec4a4d912897d1636d3b816bd8de395d09f5cc76ff4ae0

Contents?: true

Size: 1.18 KB

Versions: 14

Compression:

Stored size: 1.18 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Orgs::Teams, '#list' do
  let(:org) { 'github' }
  let(:request_path) { "/orgs/#{org}/teams" }

  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" do
    let(:body) { fixture('orgs/teams.json') }
    let(:status) { 200 }

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

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

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

    it "should get teams information" do
      teams = subject.list org
      teams.first.name.should == 'Owners'
    end

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

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

end # list

Version data entries

14 entries across 14 versions & 1 rubygems

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