Sha256: e6e7b97beac6c4a62453be5774fd47594430344557f6375a163d7eb7420ad53b
Contents?: true
Size: 1.43 KB
Versions: 6
Compression:
Stored size: 1.43 KB
Contents
require 'spec_helper' module Spree describe ReimbursementType::Exchange, type: :model do describe '.reimburse' do let(:reimbursement) { create(:reimbursement, return_items_count: 1) } let(:return_items) { reimbursement.return_items } let(:new_exchange) { double("Exchange") } let(:simulate) { true } subject { Spree::ReimbursementType::Exchange.reimburse(reimbursement, return_items, simulate)} context 'return items are supplied' do before do expect(Spree::Exchange).to receive(:new).with(reimbursement.order, return_items).and_return(new_exchange) end context "simulate is true" do it 'does not perform an exchange and returns the exchange object' do expect(new_exchange).not_to receive(:perform!) expect(subject).to eq [new_exchange] end end context "simulate is false" do let(:simulate) { false } it 'performs an exchange and returns the exchange object' do expect(new_exchange).to receive(:perform!) expect(subject).to eq [new_exchange] end end end context "no return items are supplied" do let(:return_items) { [] } it 'does not perform an exchange and returns an empty array' do expect(new_exchange).not_to receive(:perform!) expect(subject).to eq [] end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems