2012-01-30 20:39:34 +00:00
|
|
|
# -*- encoding : utf-8 -*-
|
2012-03-29 21:34:22 +01:00
|
|
|
FactoryGirl.define do
|
|
|
|
factory :product do
|
|
|
|
name { FactoryGirl.generate(:string) }
|
|
|
|
association :platform, :factory => :platform
|
2012-12-18 17:53:00 +00:00
|
|
|
association :project, :factory => :project_with_commit
|
2012-12-13 19:28:50 +00:00
|
|
|
time_living 150
|
2012-03-29 21:34:22 +01:00
|
|
|
end
|
2011-11-26 00:54:40 +00:00
|
|
|
end
|