Sha256: f7c23fa165a78d027c65c0cd85f1a7c379a259522e5c8d28a96821391f92960f

Contents?: true

Size: 1.31 KB

Versions: 12

Compression:

Stored size: 1.31 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Repos::Commits, '#list' do
  let(:user) { 'peter-murach' }
  let(:repo) { 'github' }
  let(:request_path) { "/repos/#{user}/#{repo}/commits" }

  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('repos/commits.json') }
    let(:status) { 200 }

    it { should respond_to :all }

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

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

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

    it "should get commit information" do
      commits = subject.list user, repo
      commits.first.author.name.should == 'Scott Chacon'
    end

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

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

end # list

Version data entries

12 entries across 12 versions & 1 rubygems

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