Sha256: af9e85c2cd83f1abf568bd124f8fc19411d0ac868f557447d652d06eda3837fd

Contents?: true

Size: 1.36 KB

Versions: 5

Compression:

Stored size: 1.36 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::PullRequests, '#update' do
  let(:user)   { 'peter-murach' }
  let(:repo)   { 'github' }
  let(:number) { 1347 }
  let(:request_path) { "/repos/#{user}/#{repo}/pulls/#{number}" }
  let(:inputs) {
    {
      "title" => "new title",
      "body" => "updated body",
      "state" => "open",
      "unrelated" => true
    }
  }

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

  after { reset_authentication_for(subject) }

  context "resouce updateed" do
    let(:body)   { fixture('pull_requests/pull_request.json') }
    let(:status) { 201 }

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

    it "should return the resource" do
      pull_request = subject.update user, repo, number, inputs
      pull_request.should be_a Hashie::Mash
    end

    it "should get the pull_request information" do
      pull_request = subject.update user, repo, number, inputs
      pull_request.title.should == 'new-feature'
    end
  end

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

end # update

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
github_api-0.8.11 spec/github/pull_requests/update_spec.rb
github_api-0.8.10 spec/github/pull_requests/update_spec.rb
github_api-0.8.9 spec/github/pull_requests/update_spec.rb
github_api-0.8.8 spec/github/pull_requests/update_spec.rb
github_api-0.8.7 spec/github/pull_requests/update_spec.rb