debian-mirror-gitlab/qa/spec/scenario/test/integration/mattermost_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
428 B
Ruby
Raw Normal View History

2018-11-20 20:47:30 +05:30
# frozen_string_literal: true
2021-01-03 14:25:43 +05:30
RSpec.describe QA::Scenario::Test::Integration::Mattermost do
2020-03-13 15:44:24 +05:30
describe '#perform' do
2018-11-20 20:47:30 +05:30
it_behaves_like 'a QA scenario class' do
2022-07-16 23:28:13 +05:30
let(:args) { { gitlab_address: 'http://gitlab_address' } }
2019-07-07 11:18:12 +05:30
let(:named_options) { %w[--address http://gitlab_address --mattermost-address http://mattermost_address] }
2018-11-20 20:47:30 +05:30
let(:tags) { [:mattermost] }
2022-07-16 23:28:13 +05:30
let(:options) { ['path1'] }
2018-11-20 20:47:30 +05:30
end
end
end