Sha256: 2affdea9bb3cf0141f971b19b9a1a41ead9b2b191ea7af901116c29251a25839

Contents?: true

Size: 744 Bytes

Versions: 4

Compression:

Stored size: 744 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Client::Repos::Statistics, '#contributors' do
  let(:user) { 'peter-murach' }
  let(:repo) { 'github' }
  let(:request_path) { "/repos/#{user}/#{repo}/stats/contributors" }

  before {
    stub_get(request_path).to_return(:body => body)
  }

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

    it { expect { subject.contributors }.to raise_error(ArgumentError) }

    it "should get the 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
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
github_api-0.12.3 spec/github/client/repos/statistics/contributors_spec.rb
github_api-0.12.2 spec/github/client/repos/statistics/contributors_spec.rb
github_api-0.12.1 spec/github/client/repos/statistics/contributors_spec.rb
github_api-0.12.0 spec/github/client/repos/statistics/contributors_spec.rb