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: 4732f2b635b946c117da7bd6b7b3e1c45ce0713e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
        end
      end
    end
  end
end