Sha256: 762d5602d2485f23adf621ca0e758d1381302df6a40ce4d0e2158c737235066f

Contents?: true

Size: 749 Bytes

Versions: 14

Compression:

Stored size: 749 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Gists, '#star' do
  let(:gist_id) { 1 }
  let(:request_path) { "/gists/#{gist_id}/star" }
  let(:body) { '' }
  let(:status) { 204 }

  before {
    stub_put(request_path).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.star }.to raise_error(ArgumentError)
  end

  it 'successfully stars a gist' do
    subject.star gist_id
    a_put(request_path).should have_been_made
  end

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

Version data entries

14 entries across 14 versions & 1 rubygems

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