Sha256: 4dd4886577bf0b88e9ba53d26aa24a494b361845f76d5795c2ceb4c07890f19c
Contents?: true
Size: 1013 Bytes
Versions: 5
Compression:
Stored size: 1013 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Github::PullRequests::Comments, '#delete' do let(:user) { 'peter-murach' } let(:repo) { 'github' } let(:comment_id) { 1 } let(:request_path) { "/repos/#{user}/#{repo}/pulls/comments/#{comment_id}" } let(:status) { 204 } let(:body) { fixture('pull_requests/comment.json') } 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 'resource removed' do it 'should raise error if comment_id not present' do expect { subject.delete user, repo, nil }.to raise_error(ArgumentError) end it "should remove resource successfully" do subject.delete user, repo, comment_id a_delete(request_path).should have_been_made end end it_should_behave_like 'request failure' do let(:requestable) { subject.delete user, repo, comment_id } end end # delete
Version data entries
5 entries across 5 versions & 1 rubygems