Sha256: 1115c73f94a0183b30c725d6f881a82c71c2f29f8bbb45bd99ec092905f8f29e

Contents?: true

Size: 769 Bytes

Versions: 4

Compression:

Stored size: 769 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

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

  before {
    stub_delete(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.unstar nil }.to raise_error(ArgumentError)
  end

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

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
github_api-0.9.0 spec/github/gists/unstar_spec.rb
github_api-0.8.11 spec/github/gists/unstar_spec.rb
github_api-0.8.10 spec/github/gists/unstar_spec.rb
github_api-0.8.9 spec/github/gists/unstar_spec.rb