Sha256: 044728d54f2dd32e813d7e629addef3bdfff325cbfa7fe2d2c141113d7597e0c

Contents?: true

Size: 1.33 KB

Versions: 4

Compression:

Stored size: 1.33 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Client::Activity::Events, '#issue' do
  let(:user)   { 'peter-murach' }
  let(:repo)   { 'github' }
  let(:request_path) { "/repos/#{user}/#{repo}/issues/events" }
  let(:body) { fixture('events/events.json') }
  let(:status) { 200 }

  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
    it { should respond_to :issue_events }

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

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

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

    it "should get event information" do
      events = subject.issue user, repo
      events.first.type.should == 'Event'
    end

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

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

end # issue

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
github_api-0.12.3 spec/github/client/activity/events/issue_spec.rb
github_api-0.12.2 spec/github/client/activity/events/issue_spec.rb
github_api-0.12.1 spec/github/client/activity/events/issue_spec.rb
github_api-0.12.0 spec/github/client/activity/events/issue_spec.rb