summaryrefslogtreecommitdiff
path: root/qa/spec/scenario/test/integration/mattermost_spec.rb
blob: 4e75e72f4d20af5b3b02765103fd0656cb30b85f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

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

      it 'requires a GitHub access token' do
        subject.perform(args)

        expect(attributes).to have_received(:define)
          .with(:mattermost_address, 'http://mattermost_address')
      end
    end
  end
end