Sha256: d95f7dc72ad9461539bc43b3540cd8844b0056b080d1a335fbcc196f61a7c03f

Contents?: true

Size: 1.66 KB

Versions: 15

Compression:

Stored size: 1.66 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Issues::Labels, '#update' 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_patch(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 updated" do
    let(:body) { fixture('issues/label.json') }
    let(:status) { 200 }

    it "should fail to create resource if 'name' input is missing" do
      expect {
        subject.update user, repo, label_id, inputs.except('name')
      }.to raise_error(Github::Error::RequiredParams)
    end

    it "should fail to create resource if 'color' input is missing" do
      expect {
        subject.update user, repo, label_id, inputs.except('color')
      }.to raise_error(Github::Error::RequiredParams)
    end

    it "should update resource successfully" do
      subject.update user, repo, label_id, inputs
      a_patch(request_path).with(inputs).should have_been_made
    end

    it "should return the resource" do
      label = subject.update user, repo, label_id, inputs
      label.should be_a Github::ResponseWrapper
    end

    it "should get the label information" do
      label = subject.update user, repo, label_id, inputs
      label.name.should == 'bug'
    end
  end

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

end # update

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
github_api-0.11.3 spec/github/issues/labels/update_spec.rb
github_api-0.11.2 spec/github/issues/labels/update_spec.rb
github_api-0.11.1 spec/github/issues/labels/update_spec.rb
github_api-0.11.0 spec/github/issues/labels/update_spec.rb
github_api-0.10.2 spec/github/issues/labels/update_spec.rb
github_api-0.10.1 spec/github/issues/labels/update_spec.rb
github_api-0.10.0 spec/github/issues/labels/update_spec.rb
github_api-0.9.7 spec/github/issues/labels/update_spec.rb
github_api-0.9.6 spec/github/issues/labels/update_spec.rb
github_api-0.9.5 spec/github/issues/labels/update_spec.rb
github_api-0.9.4 spec/github/issues/labels/update_spec.rb
github_api-0.9.3 spec/github/issues/labels/update_spec.rb
github_api-0.9.2 spec/github/issues/labels/update_spec.rb
github_api-0.9.1 spec/github/issues/labels/update_spec.rb
github_api-0.9.0 spec/github/issues/labels/update_spec.rb