Sha256: 7f30caa095b015f50a8616fb7a0d70643ed7b01692ffc9c4eede1c31ec708134

Contents?: true

Size: 1.64 KB

Versions: 4

Compression:

Stored size: 1.64 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::PullRequests::Comments, '#create' do
  let(:user)   { 'peter-murach' }
  let(:repo)   { 'github' }
  let(:request_path) { "/repos/#{user}/#{repo}/pulls/#{pull_request_id}/comments" }
  let(:pull_request_id) { 1 }
  let(:inputs) {
    {
      "body" => "Nice change",
      "commit_id" => "6dcb09b5b57875f334f61aebed695e2e4193db5e",
      "path" => "file1.txt",
      "position" => 4,
      "in_reply_to" => 4,
      'unrelated' => 'giberrish'
    }
  }

  before {
    stub_post(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 created" do
    let(:body) { fixture('pull_requests/comment.json') }
    let(:status) { 201 }

    it 'raises error when pull_request_id is missing' do
      expect { subject.create user, repo, nil }.to raise_error(ArgumentError)
    end

    it "should create resource successfully" do
      subject.create user, repo, pull_request_id, inputs
      a_post(request_path).with(inputs).should have_been_made
    end

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

    it "should get the request information" do
      pull_request = subject.create user, repo, pull_request_id, inputs
      pull_request.id.should == pull_request_id
    end
  end

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

end # create

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
github_api-0.8.11 spec/github/pull_requests/comments/create_spec.rb
github_api-0.8.10 spec/github/pull_requests/comments/create_spec.rb
github_api-0.8.9 spec/github/pull_requests/comments/create_spec.rb
github_api-0.8.8 spec/github/pull_requests/comments/create_spec.rb