class Gitlab::QA::Scenario::Test::Instance::Any

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

Public Instance Methods

perform(edition_and_tag, address, *rspec_args) click to toggle source
# 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 = QA::Release.new(edition_and_tag)
    specs.args = [address, *rspec_args]
  end
end