Sha256: e180c94153d2700abf400cd551ffc234f68f718fb0e8fba2e46f5f7c26fbbf0b

Contents?: true

Size: 1.18 KB

Versions: 4

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 nil }.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

4 entries across 4 versions & 1 rubygems

Version Path
github_api-0.9.0 spec/github/orgs/teams/list_spec.rb
github_api-0.8.11 spec/github/orgs/teams/list_spec.rb
github_api-0.8.10 spec/github/orgs/teams/list_spec.rb
github_api-0.8.9 spec/github/orgs/teams/list_spec.rb