debian-mirror-gitlab/spec/factories/ci/runner_versions.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
164 B
Ruby
Raw Normal View History

2022-08-13 15:12:31 +05:30
# frozen_string_literal: true
FactoryBot.define do
factory :ci_runner_version, class: 'Ci::RunnerVersion' do
sequence(:version) { |n| "1.0.#{n}" }
end
end