Sha256: 3e4e4bfe837f112a1124ae0a0642c28c1537dc50be59cc495915c4dda6d4ce97
Contents?: true
Size: 631 Bytes
Versions: 21
Compression:
Stored size: 631 Bytes
Contents
module Gitlab module QA module Scenario module Test module Instance ## # Run test suite against any GitLab instance, # including staging and on-premises installation. # class Any < Scenario::Template def perform(edition_and_tag, address, *rspec_args) Component::Specs.perform do |specs| specs.suite = 'Test::Instance' specs.release = Release.new(edition_and_tag) specs.args = [address, *rspec_args] end end end end end end end end
Version data entries
21 entries across 21 versions & 1 rubygems