Sha256: 7be9c49fe97dfb40caad0a0855a03f5b75def216addea1a071453589582b2674
Contents?: true
Size: 879 Bytes
Versions: 73
Compression:
Stored size: 879 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_configuration << "external_url '#{gitlab.address}'" gitlab.instance do Component::Specs.perform do |specs| specs.suite = 'Test::Instance::All' 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
73 entries across 73 versions & 1 rubygems