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

mattermost_spec.rb « integration « test « scenario « spec « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4cdd0c0cb0ec61d43d0b700ce9f883ab2cf1695d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

RSpec.describe QA::Scenario::Test::Integration::Mattermost do
  describe '#perform' do
    it_behaves_like 'a QA scenario class' do
      let(:args) { { gitlab_address: 'http://gitlab_address' } }
      let(:named_options) { %w[--address http://gitlab_address --mattermost-address http://mattermost_address] }
      let(:tags) { [:mattermost] }
      let(:options) { ['path1'] }
    end
  end
end