Sha256: 631757f7dd932b6a8e08f078dd80dfeb198c3b60648f8622253b2073f6c1cdeb

Contents?: true

Size: 1.44 KB

Versions: 7

Compression:

Stored size: 1.44 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Issues::Comments, '#create' do
  let(:user)   { 'peter-murach' }
  let(:repo)   { 'github' }
  let(:issue_id) { 1 }
  let(:inputs) { { 'body' => 'a new comment' } }
  let(:request_path) { "/repos/#{user}/#{repo}/issues/#{issue_id}/comments" }

  before {
    stub_post(request_path).with(:body => inputs).
      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('issues/comment.json') }
    let(:status) { 201 }

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

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

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

    it "should get the comment information" do
      comment = subject.create user, repo, issue_id, inputs
      comment.user.login.should == 'octocat'
    end
  end

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

end # create

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
github_api-0.8.11 spec/github/issues/comments/create_spec.rb
github_api-0.8.10 spec/github/issues/comments/create_spec.rb
github_api-0.8.9 spec/github/issues/comments/create_spec.rb
github_api-0.8.8 spec/github/issues/comments/create_spec.rb
github_api-0.8.7 spec/github/issues/comments/create_spec.rb
github_api-0.8.6 spec/github/issues/comments/create_spec.rb
github_api-0.8.5 spec/github/issues/comments/create_spec.rb