Sha256: 57e2a8ce21cb546f637fe0493089b7507a614b0b1e766744dfd7f1f47d77d3c5

Contents?: true

Size: 1.24 KB

Versions: 14

Compression:

Stored size: 1.24 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Users::Followers, '#following?' do
  let(:request_path) { "/user/following/#{user}" }
  let(:user)   { 'peter-murach' }
  let(:body) { '[]' }
  let(:status) { 204 }

  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) }

  it 'should raise error if username not present' do
    expect { subject.following? }.to raise_error(ArgumentError)
  end

  it 'should perform request' do
    subject.following?(user)
    a_get(request_path).with(:query => { :access_token => "#{OAUTH_TOKEN}"}).
      should have_been_made
  end

  it 'should return true if user is being followed' do
    subject.following?(user).should be_true
  end

  it 'should return false if user is not being followed' do
    stub_get("/user/following/#{user}").
      with(:query => { :access_token => "#{OAUTH_TOKEN}"}).
      to_return(:body => '',:status => 404,
        :headers => {:content_type => "application/json; charset=utf-8"})
    subject.following?(user).should be_false
  end
end # following?

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
github_api-0.11.3 spec/github/users/followers/is_following_spec.rb
github_api-0.11.2 spec/github/users/followers/is_following_spec.rb
github_api-0.11.1 spec/github/users/followers/is_following_spec.rb
github_api-0.11.0 spec/github/users/followers/is_following_spec.rb
github_api-0.10.2 spec/github/users/followers/is_following_spec.rb
github_api-0.10.1 spec/github/users/followers/is_following_spec.rb
github_api-0.10.0 spec/github/users/followers/is_following_spec.rb
github_api-0.9.7 spec/github/users/followers/is_following_spec.rb
github_api-0.9.6 spec/github/users/followers/is_following_spec.rb
github_api-0.9.5 spec/github/users/followers/is_following_spec.rb
github_api-0.9.4 spec/github/users/followers/is_following_spec.rb
github_api-0.9.3 spec/github/users/followers/is_following_spec.rb
github_api-0.9.2 spec/github/users/followers/is_following_spec.rb
github_api-0.9.1 spec/github/users/followers/is_following_spec.rb