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

runner_versions.rb « ci « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 69127aa6e544dedf22b29f8940a123f881c4cf1f (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

FactoryBot.define do
  factory :ci_runner_version, class: 'Ci::RunnerVersion' do
    sequence(:version) { |n| "1.0.#{n}" }
  end
end