Sha256: 822deef3440140c21b38ac39bc347c81712dbf05aa702764ca6d52b0037a30c6

Contents?: true

Size: 943 Bytes

Versions: 23

Compression:

Stored size: 943 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Issues::Labels, '#delete' do
  let(:user)   { 'peter-murach' }
  let(:repo)   { 'github' }
  let(:label_id) { 1 }
  let(:request_path) { "/repos/#{user}/#{repo}/labels/#{label_id}" }
  let(:inputs) {
    {
      "name" => "API",
      "color" => "FFFFFF",
    }
  }

  before {
    stub_delete(request_path).with(inputs).
      to_return(:body => body, :status => status,
      :headers => {:content_type => "application/json; charset=utf-8"})
  }

  after { reset_authentication_for(subject) }

  context "resouce removed" do
    let(:body) { fixture('issues/label.json') }
    let(:status) { 204 }

    it "should remove resource successfully" do
      subject.delete user, repo, label_id
      a_delete(request_path).should have_been_made
    end
  end

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

end # delete

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
github_api-0.8.6 spec/github/issues/labels/delete_spec.rb
github_api-0.8.5 spec/github/issues/labels/delete_spec.rb
github_api-0.8.4 spec/github/issues/labels/delete_spec.rb