summaryrefslogtreecommitdiff
path: root/spec/factories/ci/runner_machines.rb
blob: 09bf5d0844e2d820d4a0fb1c61646d274cff431b (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

FactoryBot.define do
  factory :ci_runner_machine, class: 'Ci::RunnerMachine' do
    runner factory: :ci_runner
    machine_xid { "r_#{SecureRandom.hex.slice(0, 10)}" }
  end
end