summaryrefslogtreecommitdiff
path: root/qa/qa/scenario/test/instance/all.rb
blob: 168ac4c09a18f1d17a4277abceada8f77d1c32be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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