Sha256: b5cba63f2c779d40b15d42689cdf0bbe3463902b0987c1152ef2378f17fff6c2
Contents?: true
Size: 235 Bytes
Versions: 7
Compression:
Stored size: 235 Bytes
Contents
# coding: utf-8 FactoryGirl.define do factory :product do sequence(:name) { |n| "Test product-#{n}"} association :category price 1000 active true factory :disabled_product do active false end end end
Version data entries
7 entries across 7 versions & 1 rubygems