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

module QA
  module Scenario
    module Test
      module Integration
        ##
        # Run test suite against any GitLab instance where mattermost is enabled,
        # including staging and on-premises installation.
        #
        class Mattermost < Test::Instance::All
          tags :mattermost

          attribute :mattermost_address, '--mattermost-address URL', 'Address of the Mattermost server'
        end
      end
    end
  end
end