summaryrefslogtreecommitdiff
path: root/qa/qa/scenario/test/instance/smoke.rb
blob: a7d2cb27f276a1b0b885554bbcd350fe0bf75aa7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module QA
  module Scenario
    module Test
      module Instance
        ##
        # Base class for running the suite against any GitLab instance,
        # including staging and on-premises installation.
        #
        class Smoke < Template
          include Bootable

          tags :smoke
        end
      end
    end
  end
end