Sha256: f678c8a9f1d3f188b9bc95efe49f6ddd275872795118c0b492d3cde7d1313e00
Contents?: true
Size: 372 Bytes
Versions: 7
Compression:
Stored size: 372 Bytes
Contents
# encoding: utf-8 FactoryGirl.define do factory :product do sku 'dc1/234' price 123 name 'Table' description Forgery::LoremIpsum.paragraph html: true is_visible true factory :full_product do association :collection after(:build) do |product| product.picture = create(:picture, assetable: product) end end end end
Version data entries
7 entries across 7 versions & 1 rubygems