Sha256: da44474573cfa824b8cac7aab600d6c07bb4d2aff0cb68f38c6776a2658051b4
Contents?: true
Size: 985 Bytes
Versions: 17
Compression:
Stored size: 985 Bytes
Contents
# frozen_string_literal: true module Gitlab module QA module Scenario module Test module Integration class ServicePingDisabled < Scenario::Template def perform(release, *rspec_args) Component::Gitlab.perform do |gitlab| gitlab.release = release gitlab.network = Runtime::Env.docker_network gitlab.omnibus_configuration << <<~OMNIBUS gitlab_rails['usage_ping_enabled'] = false; OMNIBUS gitlab.instance do Component::Specs.perform do |specs| specs.suite = 'Test::Integration::ServicePingDisabled' specs.release = gitlab.release specs.network = gitlab.network specs.args = [gitlab.address, *rspec_args] end end end end end end end end end end
Version data entries
17 entries across 17 versions & 1 rubygems