Sha256: 723e5232d3d5e45857c3fd42dca0652345b85fc52ba224e85634c30abbbd5a5b

Contents?: true

Size: 1.11 KB

Versions: 14

Compression:

Stored size: 1.11 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Activity::Notifications, '#delete' do
  let(:thread_id) { 1 }
  let(:request_path) { "/notifications/threads/#{thread_id}/subscription" }
  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 respond_to :remove }

  it "should delete the resource successfully" do
    subject.delete thread_id
    a_delete(request_path).with(:query => {:access_token => OAUTH_TOKEN}).
      should have_been_made
  end

  it "should fail to delete resource without 'user' parameter" do
    expect { subject.delete }.to raise_error(ArgumentError)
  end

  context 'failed to delete' do
    let(:status) { 404 }

    it "should fail to delete resource that is not found" do
      expect {
        subject.delete thread_id
      }.to raise_error(Github::Error::NotFound)
    end
  end
end # delete

Version data entries

14 entries across 14 versions & 1 rubygems

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