Sha256: 3dbe79a9feee846b20ba726e24ddd983985d65ce549f6b2049dff70729729b89

Contents?: true

Size: 1.32 KB

Versions: 4

Compression:

Stored size: 1.32 KB

Contents

# frozen_string_literal: true

require 'spree/testing_support/factories/stock_location_factory'
require 'spree/testing_support/factories/order_factory'
require 'spree/testing_support/factories/return_item_factory'

FactoryBot.define do
  factory :customer_return, class: 'Spree::CustomerReturn' do
    association(:stock_location, factory: :stock_location)

    transient do
      line_items_count 1
      return_items_count { line_items_count }
      shipped_order { create :shipped_order, line_items_count: line_items_count }
      return_authorization { create :return_authorization, order: shipped_order }
    end

    before(:create) do |customer_return, evaluator|
      evaluator.shipped_order.inventory_units.take(evaluator.return_items_count).each do |inventory_unit|
        customer_return.return_items << build(:return_item, inventory_unit: inventory_unit, return_authorization: evaluator.return_authorization)
      end
    end

    factory :customer_return_with_accepted_items do
      after(:create) do |customer_return|
        customer_return.return_items.each(&:accept!)
      end
    end
  end

  # for the case when you want to supply existing return items instead of generating some
  factory :customer_return_without_return_items, class: 'Spree::CustomerReturn' do
    association(:stock_location, factory: :stock_location)
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
solidus_core-2.6.2 lib/spree/testing_support/factories/customer_return_factory.rb
solidus_core-2.6.1 lib/spree/testing_support/factories/customer_return_factory.rb
solidus_core-2.6.0 lib/spree/testing_support/factories/customer_return_factory.rb
solidus_core-2.6.0.rc1 lib/spree/testing_support/factories/customer_return_factory.rb