Sha256: b32efe4e0f40bc571187e09bd721ce00de1622b1911efc1c268a012af7866dfc
Contents?: true
Size: 894 Bytes
Versions: 15
Compression:
Stored size: 894 Bytes
Contents
module Gitlab module QA module Scenario module Test module Instance class Image < Scenario::Template attr_writer :volumes def initialize @volumes = {} end def perform(release, *rspec_args) Component::Gitlab.perform do |gitlab| gitlab.release = release gitlab.volumes = @volumes gitlab.network = 'test' 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
15 entries across 15 versions & 1 rubygems