Sha256: 3ea5b84fcae2856e5a9e2697e1a2cac0ed97bb570b7621dc990a1bc295d5b73b

Contents?: true

Size: 1.4 KB

Versions: 25

Compression:

Stored size: 1.4 KB

Contents

# encoding: utf-8

require 'spec_helper'

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

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

    it { should respond_to :all }

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

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

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

    it "should get status information" do
      statuses = subject.list user, repo, sha
      statuses.first.state.should == 'success'
    end

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

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

end # list

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
github_api-0.11.3 spec/github/repos/statuses/list_spec.rb
github_api-0.11.2 spec/github/repos/statuses/list_spec.rb
github_api-0.11.1 spec/github/repos/statuses/list_spec.rb
github_api-0.11.0 spec/github/repos/statuses/list_spec.rb
github_api-0.10.2 spec/github/repos/statuses/list_spec.rb
github_api-0.10.1 spec/github/repos/statuses/list_spec.rb
github_api-0.10.0 spec/github/repos/statuses/list_spec.rb
github_api-0.9.7 spec/github/repos/statuses/list_spec.rb
github_api-0.9.6 spec/github/repos/statuses/list_spec.rb
github_api-0.9.5 spec/github/repos/statuses/list_spec.rb
github_api-0.9.4 spec/github/repos/statuses/list_spec.rb
github_api-0.9.3 spec/github/repos/statuses/list_spec.rb
github_api-0.9.2 spec/github/repos/statuses/list_spec.rb
github_api-0.9.1 spec/github/repos/statuses/list_spec.rb
github_api-0.9.0 spec/github/repos/statuses/list_spec.rb
github_api-0.8.11 spec/github/repos/statuses/list_spec.rb
github_api-0.8.10 spec/github/repos/statuses/list_spec.rb
github_api-0.8.9 spec/github/repos/statuses/list_spec.rb
github_api-0.8.8 spec/github/repos/statuses/list_spec.rb
github_api-0.8.7 spec/github/repos/statuses/list_spec.rb