Sha256: 01157ee402198da3be6696aa5464db15a695d9f6b64c0a9c01309b259f9855a8
Contents?: true
Size: 671 Bytes
Versions: 92
Compression:
Stored size: 671 Bytes
Contents
# frozen_string_literal: true 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::All' specs.release = QA::Release.new(edition_and_tag) specs.args = [address, *rspec_args] end end end end end end end end
Version data entries
92 entries across 92 versions & 1 rubygems