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

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

9 lines
203 B
Ruby
Raw Normal View History

2023-03-04 22:38:38 +05:30
# frozen_string_literal: true
FactoryBot.define do
factory :ci_build_runner_session, class: 'Ci::BuildRunnerSession' do
build factory: :ci_build
url { 'https://gitlab.example.com' }
end
end