summaryrefslogtreecommitdiff
path: root/qa/spec/scenario/test/integration/mattermost_spec.rb
blob: 9532ec35b95cd6fdb37ed80ff6786e4f82a8899a (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
26
# 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) { %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