summaryrefslogtreecommitdiff
path: root/qa/qa/scenario/test/instance/smoke.rb
blob: 84d83bd860d3e396f49b4dad5af77d7b45080ee8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

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