Sha256: 22164553697664cd7265fd9167f529d8acec2fcaad81a109f11ff9015a669b79
Contents?: true
Size: 1.11 KB
Versions: 12
Compression:
Stored size: 1.11 KB
Contents
# encoding: utf-8 require 'spec_helper' describe Github::Repos::Comments, '#delete' do let(:user) { 'peter-murach' } let(:repo) { 'github' } let(:comment_id) { 1 } let(:request_path) { "/repos/#{user}/#{repo}/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 "resource deleted successfully" do let(:body) { '' } let(:status) { 204 } it "should fail to delete without 'user/repo' parameters" do expect { subject.delete }.to raise_error(ArgumentError) end it "should fail to delete resource without 'comment_id'" do expect { subject.delete user, repo, nil }.to raise_error(ArgumentError) end it "should delete the resource" 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
12 entries across 12 versions & 1 rubygems