2012-03-29 21:34:22 +01:00
|
|
|
FactoryGirl.define do
|
|
|
|
factory :product do
|
|
|
|
name { FactoryGirl.generate(:string) }
|
2014-01-21 04:51:49 +00:00
|
|
|
association :platform, factory: :platform
|
|
|
|
association :project, factory: :project_with_commit
|
2012-12-13 19:28:50 +00:00
|
|
|
time_living 150
|
2013-03-25 14:22:19 +00:00
|
|
|
|
|
|
|
# see: before_validation in ProductBuildList model
|
2014-03-18 13:58:51 +00:00
|
|
|
before(:create) { Arch.find_or_create_by(name: 'x86_64') }
|
2012-03-29 21:34:22 +01:00
|
|
|
end
|
2011-11-26 00:54:40 +00:00
|
|
|
end
|