summaryrefslogtreecommitdiff
path: root/qa/qa/scenario/test/instance/smoke.rb
blob: 43f0623483ee7fa81068f4650ad4f2ef2b7c0ac3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
          include SharedAttributes

          tags :smoke
        end
      end
    end
  end
end