Sha256: 99a9db561be42cad85f2626b6234a42aa42eaee46aae6b555d680f2943912ccd

Contents?: true

Size: 1.8 KB

Versions: 24

Compression:

Stored size: 1.8 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Users::Followers, '#following' do
  let(:user)   { 'peter-murach' }
  let(:request_path) { "/users/#{user}/following" }

  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 for a user" do
    let(:body) { fixture('users/followers.json') }
    let(:status) { 200 }

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

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

    it "should get following users information" do
      followings = subject.following user
      followings.first.login.should == 'octocat'
    end

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

  context "resource found for an authenticated user" do
    let(:body) { fixture('users/followers.json') }
    let(:status) { 200 }
    let(:request_path) { "/user/following" }

    before do
      subject.oauth_token = OAUTH_TOKEN
      stub_get(request_path).
        with(:query => { :access_token => "#{OAUTH_TOKEN}"}).
        to_return(:body => fixture('users/followers.json'), :status => status,
          :headers => {:content_type => "application/json; charset=utf-8"})
    end

    it "should get the resources" do
      subject.following
      a_get(request_path).with(:query => { :access_token => "#{OAUTH_TOKEN}"}).
        should have_been_made
    end
  end

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

end # following

Version data entries

24 entries across 24 versions & 1 rubygems

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