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

module QA
  module Scenario
    module Test
      ##
      # Base class for running the suite against any GitLab instance,
      # including staging and on-premises installation.
      #
      module Instance
        class All < Template
          include Bootable
          include SharedAttributes
        end
      end
    end
  end
end