Sha256: 99f3714a6b9e49a76e88654660cb8adf651d06d86ee1a9fcfe3b88fc3dda6e7f

Contents?: true

Size: 1.39 KB

Versions: 26

Compression:

Stored size: 1.39 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Activity::Events, '#repository' do
  let(:user)   { 'peter-murach' }
  let(:repo)   { 'github' }
  let(:request_path) { "/repos/#{user}/#{repo}/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 :repo }

    it { should respond_to :repo_events }

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

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

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

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

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

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

end # repository

Version data entries

26 entries across 26 versions & 1 rubygems

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