forked from piotrmurach/github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdelete_spec.rb
More file actions
36 lines (27 loc) · 1018 Bytes
/
Copy pathdelete_spec.rb
File metadata and controls
36 lines (27 loc) · 1018 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# encoding: utf-8
require 'spec_helper'
describe Github::Issues::Comments, '#delete' do
let(:user) { 'peter-murach' }
let(:repo) { 'github' }
let(:comment_id) { '1' }
let(:request_path) { "/repos/#{user}/#{repo}/issues/comments/#{comment_id}" }
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 "resouce deleted" do
let(:body) { fixture('issues/comment.json') }
let(:status) { 204 }
it "should fail to delete resource if comment_id is missing" do
expect { subject.delete user, repo, nil }.to raise_error(ArgumentError)
end
it "should create 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