summaryrefslogtreecommitdiff
path: root/spec/factories/ci/runners.rb
blob: e3b73e29987514dc89ef26e7f9ae512151bde743 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FactoryGirl.define do
  factory :ci_runner, class: Ci::Runner do
    sequence :description do |n|
      "My runner#{n}"
    end

    platform  "darwin"
    is_shared false
    active    true

    trait :shared do
      is_shared true
    end

    trait :inactive do
      active false
    end
  end
end