Sha256: 53069487bf2a6cb585632cb6eae6d22aa4a49589ed20f6b3aa07e50222111045

Contents?: true

Size: 1.21 KB

Versions: 12

Compression:

Stored size: 1.21 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Activity::Events, '#org' do
  let(:org) { 'github' }
  let(:request_path) { "/orgs/#{org}/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 :organization }

    it "should fail to get resource without orgname" do
      expect { subject.org nil }.to raise_error(ArgumentError)
    end

    it "should get the resources" do
      subject.org org
      a_get(request_path).should have_been_made
    end

    it_should_behave_like 'an array of resources' do
      let(:requestable) { subject.org org }
    end

    it "should get event information" do
      events = subject.org org
      events.first.type.should == 'Event'
    end

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

  it_should_behave_like 'request failure' do
    let(:requestable) { subject.org org }
  end

end # org

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
github_api-0.9.0 spec/github/activity/events/org_spec.rb
github_api-0.8.11 spec/github/activity/events/org_spec.rb
github_api-0.8.10 spec/github/activity/events/org_spec.rb
github_api-0.8.9 spec/github/activity/events/org_spec.rb
github_api-0.8.8 spec/github/activity/events/org_spec.rb
github_api-0.8.7 spec/github/activity/events/org_spec.rb
github_api-0.8.6 spec/github/activity/events/org_spec.rb
github_api-0.8.5 spec/github/activity/events/org_spec.rb
github_api-0.8.4 spec/github/activity/events/org_spec.rb
github_api-0.8.3 spec/github/activity/events/org_spec.rb
github_api-0.8.2 spec/github/activity/events/org_spec.rb
github_api-0.8.1 spec/github/activity/events/org_spec.rb