Sha256: 57d1650dd942f9d3ab01ba294fa399dbbe26f62b4de497ae038c209a46ba6988

Contents?: true

Size: 1.64 KB

Versions: 4

Compression:

Stored size: 1.64 KB

Contents

# encoding: utf-8

require 'spec_helper'

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

  before {
    subject.oauth_token = OAUTH_TOKEN
    stub_get(request_path).with(:query => { :access_token => OAUTH_TOKEN}).
      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(:status) { 200 }
    let(:body) { fixture('users/followers.json') }

    it { should respond_to :all }

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

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

    it "should get followers information" do
      followers = subject.list user
      followers.first.login.should == 'octocat'
    end

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

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

    it "should get the resources" do
      subject.list
      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.list user }
  end

end # list

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
github_api-0.12.3 spec/github/client/users/followers/list_spec.rb
github_api-0.12.2 spec/github/client/users/followers/list_spec.rb
github_api-0.12.1 spec/github/client/users/followers/list_spec.rb
github_api-0.12.0 spec/github/client/users/followers/list_spec.rb