Sha256: 9f023a1cd126085e460b62d9ea65e1ebb6489315c80dd3674d8c13bcca9428a8
Contents?: true
Size: 1.72 KB
Versions: 9
Compression:
Stored size: 1.72 KB
Contents
require 'spec_helper' describe Spree::Promotion::Rules::NthOrder do describe "#applicable?" do subject { described_class.new.applicable?(promotable) } context "when the promotable is an order" do let(:promotable) { Spree::Order.new } it { is_expected.to be true } end context "when the promotable is not a order" do let(:promotable) { "not an order" } it { is_expected.to be false } end end describe "eligible?" do let(:instance) { described_class.new } subject { instance.eligible?(order) } before do instance.preferred_nth_order = 2 end context "when the order does not have a user" do let(:order) { Spree::Order.new } it { is_expected.to be false } end context "when the order has a user" do let(:order) { create :order } let(:user) { order.user } context "when the user has completed orders" do before do old_order = create :completed_order_with_totals, user: user old_order.update_attributes(completed_at: 1.day.ago) end context "when this order will be the 'nth' order" do it { is_expected.to be true } end context "when this order is completed and is still the 'nth' order" do before do order.update_attributes(completed_at: Time.now) end it { is_expected.to be true } end context "when this order will not be the 'nth' order" do before do instance.preferred_nth_order = 100 end it { is_expected.to be false } end end context "when the user has no completed orders " do it { is_expected.to be false } end end end end
Version data entries
9 entries across 9 versions & 1 rubygems