Sha256: 8853eb415ffb3759a5f3c8f6ac973cf0e7e9b5bce98af78856b477e6c3adee5c
Contents?: true
Size: 929 Bytes
Versions: 14
Compression:
Stored size: 929 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Github::Users::Followers, '#follow' do let(:request_path) { "/user/following/#{user}" } let(:user) { 'peter-murach' } let(:body) { '[]' } let(:status) { 204 } before { subject.oauth_token = OAUTH_TOKEN stub_put(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.follow }.to raise_error(ArgumentError) end it 'successfully unfollows a user' do subject.follow(user) a_put(request_path).with(:query => { :access_token => OAUTH_TOKEN}). should have_been_made end it "should return 204 with a message 'Not Found'" do subject.follow(user).status.should be 204 end end # follow
Version data entries
14 entries across 14 versions & 1 rubygems