summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/slash_commands/application_help_spec.rb
blob: b203a1ee79ce537a1878d2e8e6ea2105241eca01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

require 'spec_helper'

describe Gitlab::SlashCommands::ApplicationHelp do
  let(:params) { { command: '/gitlab', text: 'help' } }

  describe '#execute' do
    subject do
      described_class.new(params).execute
    end

    it 'displays the help section' do
      expect(subject[:response_type]).to be(:ephemeral)
      expect(subject[:text]).to include('Available commands')
      expect(subject[:text]).to include('/gitlab [project name or alias] issue show')
    end
  end
end