Sha256: 139b81317d1ba9d70b45cd573bfc713176395dfcec361b5b81a2e2f56f3dd191

Contents?: true

Size: 1.19 KB

Versions: 24

Compression:

Stored size: 1.19 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Issues::Assignees, '#list' do
  let(:user) { 'peter-murach' }
  let(:repo) { 'github' }
  let(:request_path) { "/repos/#{user}/#{repo}/assignees" }

  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 'resources found' do
    let(:body) { fixture('repos/assignees.json') }
    let(:status) { 200 }

    it { should respond_to(:all) }

    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 collaborator information" do
      assignees = subject.list user, repo
      assignees.first.login.should == 'octocat'
    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

24 entries across 24 versions & 1 rubygems

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