Sha256: 89ab0b1ef0ec274d436a374a464788deda22d32a376c8b90fb9c0056dafcd5c6

Contents?: true

Size: 1.01 KB

Versions: 4

Compression:

Stored size: 1.01 KB

Contents

# encoding: utf-8

require 'spec_helper'

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

  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 key 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.11.3 spec/github/repos/releases/delete_spec.rb
github_api-0.11.2 spec/github/repos/releases/delete_spec.rb
github_api-0.11.1 spec/github/repos/releases/delete_spec.rb
github_api-0.11.0 spec/github/repos/releases/delete_spec.rb