Welcome to mirror list, hosted at ThFree Co, Russian Federation.

runner_machines.rb « ci « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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