Sha256: 73e6fa92e30f7c1caa4d1530b35ca31ce1c71365c37d2d19b5fb651776bd01b9

Contents?: true

Size: 953 Bytes

Versions: 4

Compression:

Stored size: 953 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Client::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 }.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

4 entries across 4 versions & 1 rubygems

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