Sha256: 62ed8a68e8e25fce30e8d0891dc56adbaab911eccbfd6e6834dce657803154e2
Contents?: true
Size: 1.64 KB
Versions: 5
Compression:
Stored size: 1.64 KB
Contents
require 'spec_helper' describe HelloSign::Api::UnclaimedDraft do describe '#create_unclaimed_draft' do context 'send_document' do before do stub_post('/unclaimed_draft/create', 'unclaimed_draft') @unclaimed_draft = HelloSign.create_unclaimed_draft({ :type => 'send_document' }) end it 'should get the correct resource' do expect(a_post('/unclaimed_draft/create')).to have_been_made end it 'should return a UnclaimedDraft' do expect(@unclaimed_draft).to be_an HelloSign::Resource::UnclaimedDraft end end context 'request_signature' do before do stub_post('/unclaimed_draft/create', 'unclaimed_draft') @unclaimed_draft = HelloSign.create_unclaimed_draft({ :type => 'request_signature' }) end it 'should get the correct resource' do expect(a_post('/unclaimed_draft/create')).to have_been_made end it 'should return a UnclaimedDraft' do expect(@unclaimed_draft).to be_an HelloSign::Resource::UnclaimedDraft end end context 'edit_and_resend' do before do stub_post('/unclaimed_draft/edit_and_resend/1', 'unclaimed_draft') @unclaimed_draft = HelloSign.edit_and_resend_unclaimed_draft( :signature_request_id => '1', :client_id => '5e365c014bea2e9a05a9d0834f3e7ca4' ) end it 'should get the correct resource' do expect(a_post('/unclaimed_draft/edit_and_resend/1')).to have_been_made end it 'should return an UnclaimedDraft response' do expect(@unclaimed_draft).to be_a HelloSign::Resource::UnclaimedDraft end end end end
Version data entries
5 entries across 5 versions & 1 rubygems