Sha256: 8254e8fb49a451c53d5cafe09a7dab79211a5de666bcacf6b1366b71439c80e3

Contents?: true

Size: 1.93 KB

Versions: 4

Compression:

Stored size: 1.93 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Client::Activity::Events, '#received' do
  let(:user)   { 'peter-murach' }
  let(:request_path) { "/users/#{user}/received_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 fail to get resource without username" do
      expect { subject.received }.to raise_error(ArgumentError)
    end

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

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

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

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

  context "all public resources found" do
    let(:request_path) { "/users/#{user}/received_events/public" }

    it "should get the resources" do
      subject.received user, :public => true
      a_get(request_path).should have_been_made
    end

    it_should_behave_like 'an array of resources' do
      let(:requestable) { subject.received user, :public => true }
    end

    it "should get event information" do
      events = subject.received user, :public => true
      events.first.type.should == 'Event'
    end

    it "should yield to a block" do
      yielded = []
      result = subject.received(user, :public => true) { |obj| yielded << obj }
      yielded.should == result
    end
  end

  it_should_behave_like 'request failure' do
    let(:requestable) { subject.received user }
  end
end # received

Version data entries

4 entries across 4 versions & 1 rubygems

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