Sha256: 1b793109850ef0932714b2c9d888e40f0b1f70100e94caeae7df5a70afb354fa
Contents?: true
Size: 1.21 KB
Versions: 1
Compression:
Stored size: 1.21 KB
Contents
FactoryGirl.define do factory :simple_product, :class => Spree::Product do sequence(:name) { |n| "Product ##{n} - #{Kernel.rand(9999)}" } description { Faker::Lorem.paragraphs(1 + Kernel.rand(5)).join("\n") } price 19.99 cost_price 17.00 sku 'ABC' available_on 1.year.ago deleted_at nil on_hand 5 end factory :product, :parent => :simple_product do tax_category { |r| Spree::TaxCategory.first || r.association(:tax_category) } shipping_category { |r| Spree::ShippingCategory.first || r.association(:shipping_category) } on_hand 5 end factory :product_with_option_types, :parent => :product do after_create { |product| FactoryGirl.create(:product_option_type, :product => product) } end factory :custom_product, :class => Spree::Product do name "Custom Product" price "17.99" description { Faker::Lorem.paragraphs(1 + Kernel.rand(5)).join("\n") } on_hand 5 # associations: tax_category { |r| Spree::TaxCategory.first || r.association(:tax_category) } shipping_category { |r| Spree::ShippingCategory.first || r.association(:shipping_category) } sku 'ABC' available_on 1.year.ago deleted_at nil association :taxons end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
spree_core-1.3.1 | lib/spree/core/testing_support/factories/product_factory.rb |