2015-09-25 12:07:36 +05:30
|
|
|
FactoryGirl.define do
|
|
|
|
factory :ci_runner, class: Ci::Runner do
|
|
|
|
sequence :description do |n|
|
|
|
|
"My runner#{n}"
|
|
|
|
end
|
|
|
|
|
2016-04-02 18:10:28 +05:30
|
|
|
platform "darwin"
|
|
|
|
is_shared false
|
|
|
|
active true
|
2015-09-25 12:07:36 +05:30
|
|
|
|
2016-04-02 18:10:28 +05:30
|
|
|
trait :shared do
|
2015-09-25 12:07:36 +05:30
|
|
|
is_shared true
|
|
|
|
end
|
2016-09-29 09:46:39 +05:30
|
|
|
|
|
|
|
trait :inactive do
|
|
|
|
active false
|
|
|
|
end
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
|
|
|
end
|