Sha256: fcb24bc2b2d11a25b9005fedd910943fd5a9ac4ab71d5725209a91b70d412b11

Contents?: true

Size: 758 Bytes

Versions: 7

Compression:

Stored size: 758 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

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

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

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

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

    it "should get the resources" do
      subject.commit_activity user, repo
      a_get(request_path).should have_been_made
    end

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

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
github_api-0.11.3 spec/github/repos/statistics/commit_activity_spec.rb
github_api-0.11.2 spec/github/repos/statistics/commit_activity_spec.rb
github_api-0.11.1 spec/github/repos/statistics/commit_activity_spec.rb
github_api-0.11.0 spec/github/repos/statistics/commit_activity_spec.rb
github_api-0.10.2 spec/github/repos/statistics/commit_activity_spec.rb
github_api-0.10.1 spec/github/repos/statistics/commit_activity_spec.rb
github_api-0.10.0 spec/github/repos/statistics/commit_activity_spec.rb