Sha256: 3bed7a6796d0b50e2afda91a3f6701320b5561f904df05e0489696dea10fdcdf
Contents?: true
Size: 917 Bytes
Versions: 2
Compression:
Stored size: 917 Bytes
Contents
module Gitlab module QA module Scenario module Test module Instance class RelativeUrl < Image def perform(release, *rspec_args) Component::Gitlab.perform do |gitlab| gitlab.release = release gitlab.network = 'test' gitlab.relative_path = '/relative' gitlab.omnibus_config = <<~OMNIBUS external_url '#{gitlab.address}' OMNIBUS gitlab.instance do Component::Specs.perform do |specs| specs.suite = 'Test::Instance' 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
gitlab-qa-2.13.1 | lib/gitlab/qa/scenario/test/instance/relative_url.rb |
gitlab-qa-2.13.0 | lib/gitlab/qa/scenario/test/instance/relative_url.rb |