13 lines
370 B
Ruby
13 lines
370 B
Ruby
# -*- encoding : utf-8 -*-
|
|
FactoryGirl.define do
|
|
factory :product do
|
|
name { FactoryGirl.generate(:string) }
|
|
association :platform, :factory => :platform
|
|
association :project, :factory => :project_with_commit
|
|
time_living 150
|
|
|
|
# see: before_validation in ProductBuildList model
|
|
before(:create) { Arch.find_or_create_by_name('x86_64') }
|
|
end
|
|
end
|