2012-01-30 20:39:34 +00:00
|
|
|
# -*- encoding : utf-8 -*-
|
2012-03-29 21:34:22 +01:00
|
|
|
FactoryGirl.define do
|
|
|
|
factory :build_list do
|
|
|
|
association :user
|
|
|
|
association :project
|
2012-05-05 20:26:34 +01:00
|
|
|
association :save_to_platform, :factory => :platform_with_repos
|
2012-03-29 21:34:22 +01:00
|
|
|
association :arch
|
2012-05-04 18:12:51 +01:00
|
|
|
build_for_platform {|bl| bl.save_to_platform}
|
2012-03-29 21:34:22 +01:00
|
|
|
project_version "1.0"
|
|
|
|
build_requires true
|
|
|
|
update_type 'security'
|
2012-05-04 18:12:51 +01:00
|
|
|
include_repos {|bl| bl.save_to_platform.repositories.map(&:id)}
|
2012-03-29 21:34:22 +01:00
|
|
|
commit_hash '1234567890abcdef1234567890abcdef12345678'
|
|
|
|
end
|
2011-12-08 18:51:25 +00:00
|
|
|
|
2012-03-29 21:34:22 +01:00
|
|
|
factory :build_list_core, :parent => :build_list do
|
|
|
|
bs_id { FactoryGirl.generate(:integer) }
|
|
|
|
end
|
2012-06-18 17:19:09 +01:00
|
|
|
|
|
|
|
factory :build_list_package, :class => BuildList::Package do
|
|
|
|
association :build_list
|
|
|
|
association :project
|
|
|
|
association :platform
|
|
|
|
fullname "test_package"
|
|
|
|
name "test_package"
|
|
|
|
version "3.1.12"
|
|
|
|
release 6
|
|
|
|
package_type "source"
|
|
|
|
end
|
2011-12-08 18:51:25 +00:00
|
|
|
end
|