Sha256: a0d048f3886372205848c9c66f870f52875df3b0eaa9750931cb4a5462daa2ad

Contents?: true

Size: 1.5 KB

Versions: 12

Compression:

Stored size: 1.5 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Repos, '#contributors' do
  let(:user) { 'peter-murach' }
  let(:repo) { 'github' }

  after { reset_authentication_for subject }

  let(:request_path) { "/repos/#{user}/#{repo}/contributors" }

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

  context "resource found" do
    let(:body)   { fixture('repos/contributors.json') }
    let(:status) { 200 }

    it "should raise error when no user/repo parameters" do
      expect { subject.contributors nil, repo }.to raise_error(ArgumentError)
    end

    it "should raise error when no repository" do
      expect { subject.contributors user, nil }.to raise_error(ArgumentError)
    end

    it "should find resources" do
      subject.contributors user, repo
      a_get(request_path).should have_been_made
    end

    it_should_behave_like 'an array of resources' do
      let(:requestable) { subject.contributors user, repo }
    end

    it "should get branch information" do
      contributors = subject.contributors user, repo
      contributors.first.login.should == 'octocat'
    end

    it "should yield to a block" do
      subject.should_receive(:contributors).with(user, repo).and_yield('web')
      subject.contributors(user, repo) { |param| 'web'}
    end
  end

  it_should_behave_like 'request failure' do
    let(:requestable) { subject.contributors user, repo }
  end

end # contributors

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
github_api-0.9.0 spec/github/repos/contributors_spec.rb
github_api-0.8.11 spec/github/repos/contributors_spec.rb
github_api-0.8.10 spec/github/repos/contributors_spec.rb
github_api-0.8.9 spec/github/repos/contributors_spec.rb
github_api-0.8.8 spec/github/repos/contributors_spec.rb
github_api-0.8.7 spec/github/repos/contributors_spec.rb
github_api-0.8.6 spec/github/repos/contributors_spec.rb
github_api-0.8.5 spec/github/repos/contributors_spec.rb
github_api-0.8.4 spec/github/repos/contributors_spec.rb
github_api-0.8.3 spec/github/repos/contributors_spec.rb
github_api-0.8.2 spec/github/repos/contributors_spec.rb
github_api-0.8.1 spec/github/repos/contributors_spec.rb