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