rosa-build/spec/factories/build_lists.rb

20 lines
524 B
Ruby
Raw Normal View History

2012-01-30 20:39:34 +00:00
# -*- encoding : utf-8 -*-
FactoryGirl.define do
factory :build_list do
association :user
association :project
association :pl, :factory => :platform_with_repos
association :arch
bpl {|bl| bl.pl}
project_version "1.0"
build_requires true
update_type 'security'
include_repos {|bl| bl.pl.repositories.map(&:id)}
commit_hash '1234567890abcdef1234567890abcdef12345678'
end
factory :build_list_core, :parent => :build_list do
bs_id { FactoryGirl.generate(:integer) }
end
end