Sha256: bc2b482f55da50860dad0c92b6c89fbfeb7c71bf86f519450a7faab15fd790c9

Contents?: true

Size: 1.38 KB

Versions: 9

Compression:

Stored size: 1.38 KB

Contents

FactoryGirl.define do
  factory :promotion, class: Spree::Promotion do
    name 'Promo'

    trait :with_line_item_adjustment do
      transient do
        adjustment_rate 10
      end

      after(:create) do |promotion, evaluator|
        calculator = Spree::Calculator::FlatRate.new
        calculator.preferred_amount = evaluator.adjustment_rate
        Spree::Promotion::Actions::CreateItemAdjustments.create!(calculator: calculator, promotion: promotion)
      end
    end
    factory :promotion_with_item_adjustment, traits: [:with_line_item_adjustment]

    trait :with_order_adjustment do
      transient do
        order_adjustment_amount 10
      end

      after(:create) do |promotion, evaluator|
        calculator = Spree::Calculator::FlatRate.new
        calculator.preferred_amount = evaluator.order_adjustment_amount
        action = Spree::Promotion::Actions::CreateAdjustment.create!(:calculator => calculator)
        promotion.actions << action
        promotion.save!
      end
    end

    trait :with_item_total_rule do
      transient do
        item_total_threshold_amount 10
      end

      after(:create) do |promotion, evaluator|
        rule = Spree::Promotion::Rules::ItemTotal.create!(
          preferred_operator: 'gte',
          preferred_amount: evaluator.item_total_threshold_amount
        )
        promotion.rules << rule
        promotion.save!
      end
    end

  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
spree_core-2.3.13 lib/spree/testing_support/factories/promotion_factory.rb
spree_core-2.3.12 lib/spree/testing_support/factories/promotion_factory.rb
spree_core-2.3.11 lib/spree/testing_support/factories/promotion_factory.rb
spree_core-2.3.10 lib/spree/testing_support/factories/promotion_factory.rb
spree_core-2.3.9 lib/spree/testing_support/factories/promotion_factory.rb
spree_core-2.3.8 lib/spree/testing_support/factories/promotion_factory.rb
spree_core-2.3.7 lib/spree/testing_support/factories/promotion_factory.rb
spree_core-2.3.6 lib/spree/testing_support/factories/promotion_factory.rb
spree_core-2.3.5 lib/spree/testing_support/factories/promotion_factory.rb