Class: Gitlab::QA::Scenario::Test::Instance::Smoke

Inherits:
Gitlab::QA::Scenario::Template show all
Defined in:
lib/gitlab/qa/scenario/test/instance/smoke.rb

Overview

Run smoke test suite against any GitLab instance, including staging and on-premises installation.

Instance Method Summary collapse

Methods inherited from Gitlab::QA::Scenario::Template

perform

Instance Method Details

#perform(edition_and_tag, address, *rspec_args) ⇒ Object



13
14
15
16
17
18
19
# File 'lib/gitlab/qa/scenario/test/instance/smoke.rb', line 13

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