Sha256: 9b0cafe63be93de16ea2bfd6d88806b0c05f68eea24d3f65ebac0f3d204d34bb

Contents?: true

Size: 949 Bytes

Versions: 10

Compression:

Stored size: 949 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

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

  before {
    subject.oauth_token = OAUTH_TOKEN
    stub_delete(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 gist id not present" do
    expect { subject.unfollow nil }.to raise_error(ArgumentError)
  end

  it 'successfully unfollows a user' do
    subject.unfollow(user)
    a_delete(request_path).with(:query => { :access_token => OAUTH_TOKEN}).
      should have_been_made
  end

  it "should return 204 with a message 'Not Found'" do
    subject.unfollow(user).status.should be 204
  end
end # unfollow

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
github_api-0.9.0 spec/github/users/followers/unfollow_spec.rb
github_api-0.8.11 spec/github/users/followers/unfollow_spec.rb
github_api-0.8.10 spec/github/users/followers/unfollow_spec.rb
github_api-0.8.9 spec/github/users/followers/unfollow_spec.rb
github_api-0.8.8 spec/github/users/followers/unfollow_spec.rb
github_api-0.8.7 spec/github/users/followers/unfollow_spec.rb
github_api-0.8.6 spec/github/users/followers/unfollow_spec.rb
github_api-0.8.5 spec/github/users/followers/unfollow_spec.rb
github_api-0.8.4 spec/github/users/followers/unfollow_spec.rb
github_api-0.8.3 spec/github/users/followers/unfollow_spec.rb