Sha256: f318b93b25f0c9696966f611fcd8c456ae7bf7e4bbf4d6121fa8f605d9e08e48

Contents?: true

Size: 1 KB

Versions: 4

Compression:

Stored size: 1 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Client::Activity::Starring, '#star' do
  let(:user) { 'peter-murach' }
  let(:repo) { 'github' }
  let(:request_path) { "/user/starred/#{user}/#{repo}" }

  after { reset_authentication_for subject }

  context "user authenticated" do
    context "with correct information" do
      before do
        subject.oauth_token = OAUTH_TOKEN
        stub_put(request_path).with(:query => {:access_token => OAUTH_TOKEN}).
          to_return(:body => "", :status => 204, :headers => {})
      end

      it "should successfully star a repo" do
        subject.star user, repo
        a_put(request_path).with(:query => {:access_token => OAUTH_TOKEN}).
          should have_been_made
      end
    end
  end

  context "user unauthenticated" do
    it "should fail" do
      stub_put(request_path).to_return(:body => "", :status => 401, :headers => {})
      expect {
        subject.star user, repo
      }.to raise_error(Github::Error::Unauthorized)
    end
  end
end # star

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
github_api-0.12.3 spec/github/client/activity/starring/star_spec.rb
github_api-0.12.2 spec/github/client/activity/starring/star_spec.rb
github_api-0.12.1 spec/github/client/activity/starring/star_spec.rb
github_api-0.12.0 spec/github/client/activity/starring/star_spec.rb