Sha256: cab524482d6d11aee12e058c67596427d22a1dea18dc27e9bbf12996aa57dc9d

Contents?: true

Size: 1.04 KB

Versions: 4

Compression:

Stored size: 1.04 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Client::Repos::Releases::Assets, '#delete' do
  let(:user) { 'peter-murach' }
  let(:repo) { 'github' }
  let(:path) { "/repos/#{user}/#{repo}/releases/assets/#{id}" }
  let(:id)   { 1 }

  before {
    stub_delete(path).to_return(body: body, status: status,
      headers: {content_type: 'application/json; charset=utf-8'})
  }

  after { reset_authentication_for(subject) }

  context "resource found successfully" do
    let(:body)   { '' }
    let(:status) { 204 }

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

    it "should fail to delete resource without asset id" do
      expect { subject.delete user, repo }.to raise_error(ArgumentError)
    end

    it "should delete the resource" do
      subject.delete user, repo, id
      a_delete(path).should have_been_made
    end
  end

  it_should_behave_like 'request failure' do
    let(:requestable) { subject.delete user, repo, id }
  end
end # delete

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
github_api-0.12.3 spec/github/client/repos/assets/delete_spec.rb
github_api-0.12.2 spec/github/client/repos/assets/delete_spec.rb
github_api-0.12.1 spec/github/client/repos/assets/delete_spec.rb
github_api-0.12.0 spec/github/client/repos/assets/delete_spec.rb