summaryrefslogtreecommitdiff
path: root/spec/factories/ci/runners.rb
blob: cdc170b9ccb890884805a318b50a7925c26ae7e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
FactoryBot.define do
  factory :ci_runner, class: Ci::Runner do
    sequence(:description) { |n| "My runner#{n}" }

    platform  "darwin"
    is_shared false
    active    true
    access_level :not_protected
    runner_type :project_type

    trait :online do
      contacted_at Time.now
    end

    trait :shared do
      is_shared true
      runner_type :instance_type
    end

    trait :specific do
      is_shared false
    end

    trait :inactive do
      active false
    end

    trait :ref_protected do
      access_level :ref_protected
    end
  end
end