Sha256: 03baf202f93e80c3525c68f999bcec86ee6ad9f5c655e8498c307d2883eaffdd

Contents?: true

Size: 1.71 KB

Versions: 21

Compression:

Stored size: 1.71 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Issues::Labels, '#remove' do
  let(:user)   { 'peter-murach' }
  let(:repo)   { 'github' }
  let(:issue_id) { 1 }
  let(:label_id) { 1 }
  let(:request_path) { "/repos/#{user}/#{repo}/issues/#{issue_id}/labels/#{label_id}" }

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

  after { reset_authentication_for(subject) }

  context "remove a label from an issue" do
    let(:body) { fixture('issues/labels.json') }
    let(:status) { 200 }

    it "should throw exception if issue-id not present" do
      expect { subject.remove user, repo, nil }.to raise_error(ArgumentError)
    end

    it "should remove label successfully" do
      subject.remove user, repo, issue_id, :label_name => label_id
      a_delete(request_path).should have_been_made
    end

    it "should return the resource" do
      labels = subject.remove user, repo, issue_id, :label_name => label_id
      labels.first.should be_a Hashie::Mash
    end

    it "should get the label information" do
      labels = subject.remove user, repo, issue_id, :label_name => label_id
      labels.first.name.should == 'bug'
    end
  end

  context "remove all labels from an issue" do
    let(:request_path) { "/repos/#{user}/#{repo}/issues/#{issue_id}/labels" }
    let(:body) { '[]' }
    let(:status) { 204 }

    it "should remove labels successfully" do
      subject.remove user, repo, issue_id
      a_delete(request_path).should have_been_made
    end
  end

  it_should_behave_like 'request failure' do
    let(:requestable) { subject.remove user, repo, issue_id, :label_name => label_id }
  end

end # remove

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
github_api-0.11.3 spec/github/issues/labels/remove_spec.rb
github_api-0.11.2 spec/github/issues/labels/remove_spec.rb
github_api-0.11.1 spec/github/issues/labels/remove_spec.rb
github_api-0.11.0 spec/github/issues/labels/remove_spec.rb
github_api-0.10.2 spec/github/issues/labels/remove_spec.rb
github_api-0.10.1 spec/github/issues/labels/remove_spec.rb
github_api-0.10.0 spec/github/issues/labels/remove_spec.rb
github_api-0.9.7 spec/github/issues/labels/remove_spec.rb
github_api-0.9.6 spec/github/issues/labels/remove_spec.rb
github_api-0.9.5 spec/github/issues/labels/remove_spec.rb
github_api-0.9.4 spec/github/issues/labels/remove_spec.rb
github_api-0.9.3 spec/github/issues/labels/remove_spec.rb
github_api-0.9.2 spec/github/issues/labels/remove_spec.rb
github_api-0.9.1 spec/github/issues/labels/remove_spec.rb
github_api-0.9.0 spec/github/issues/labels/remove_spec.rb
github_api-0.8.11 spec/github/issues/labels/remove_spec.rb
github_api-0.8.10 spec/github/issues/labels/remove_spec.rb
github_api-0.8.9 spec/github/issues/labels/remove_spec.rb
github_api-0.8.8 spec/github/issues/labels/remove_spec.rb
github_api-0.8.7 spec/github/issues/labels/remove_spec.rb