Sha256: 8578fd4c5364e2d96d80f2342a813f8f644b2de3a2baaa2cd4d08120a6fd3681
Contents?: true
Size: 1017 Bytes
Versions: 34
Compression:
Stored size: 1017 Bytes
Contents
require 'spec_helper' describe Spree::Calculator::PriceSack, type: :model do let(:calculator) do calculator = Spree::Calculator::PriceSack.new calculator.preferred_minimal_amount = 5 calculator.preferred_normal_amount = 10 calculator.preferred_discount_amount = 1 calculator end let(:order) { stub_model(Spree::Order) } let(:shipment) { stub_model(Spree::Shipment, amount: 10) } # Regression test for https://github.com/spree/spree/issues/714 and https://github.com/spree/spree/issues/739 it "computes with an order object" do calculator.compute(order) end # Regression test for https://github.com/spree/spree/issues/1156 it "computes with a shipment object" do calculator.compute(shipment) end # Regression test for https://github.com/spree/spree/issues/2055 it "computes the correct amount" do expect(calculator.compute(2)).to eq(calculator.preferred_normal_amount) expect(calculator.compute(6)).to eq(calculator.preferred_discount_amount) end end
Version data entries
34 entries across 17 versions & 1 rubygems