Sha256: f043f2fd39bcde35890f0f248e59b19da199885df274669a6b609fccda3976a9
Contents?: true
Size: 1.74 KB
Versions: 6
Compression:
Stored size: 1.74 KB
Contents
# frozen_string_literal: true require 'rails_helper' RSpec.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(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(completed_at: Time.current) 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
6 entries across 6 versions & 1 rubygems