Class: Gitlab::QA::Scenario::Test::Instance::Any
- Inherits:
-
Gitlab::QA::Scenario::Template
- Object
- Gitlab::QA::Scenario::Template
- Gitlab::QA::Scenario::Test::Instance::Any
- Defined in:
- lib/gitlab/qa/scenario/test/instance/any.rb
Overview
Run test suite against any GitLab instance, including staging and on-premises installation.
Instance Method Summary collapse
Methods inherited from Gitlab::QA::Scenario::Template
Instance Method Details
#perform(edition_and_tag, address, *rspec_args) ⇒ Object
11 12 13 14 15 16 17 |
# File 'lib/gitlab/qa/scenario/test/instance/any.rb', line 11 def perform(edition_and_tag, address, *rspec_args) Component::Specs.perform do |specs| specs.suite = 'Test::Instance::All' specs.release = Release.new(edition_and_tag) specs.args = [address, *rspec_args] end end |