Sha256: 825b1407555367e4ff3151dad4f747be749dcf3a0ab0cc978a8fadd620505839
Contents?: true
Size: 885 Bytes
Versions: 4
Compression:
Stored size: 885 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Github::Client::Gists::Comments, '#delete' do let(:gist_id) { 1 } let(:comment_id) { 1 } let(:request_path) { "/gists/#{gist_id}/comments/#{comment_id}" } let(:body) { '' } let(:status) { 204 } before { stub_delete(request_path).to_return(:body => body, :status => status, :headers => {:content_type => "application/json; charset=utf-8"}) } after { reset_authentication_for(subject) } it "should fail to create resource if 'content' input is missing" do expect { subject.delete gist_id, nil }.to raise_error(ArgumentError) end it "should create resource successfully" do subject.delete gist_id, comment_id a_delete(request_path).should have_been_made end it_should_behave_like 'request failure' do let(:requestable) { subject.delete gist_id, comment_id } end end # delete
Version data entries
4 entries across 4 versions & 1 rubygems