Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mattermost.rb « integration « test « scenario « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9a84e5c8fd81be5d4af4903773bf336aab568c0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 < Scenario::Entrypoint
          tags :core, :mattermost

          def perform(address, mattermost, *files)
            Runtime::Scenario.mattermost = mattermost
            super(address, files)
          end
        end
      end
    end
  end
end