2d19b1adef
ChatOps used to be in the Ultimate tier.
19 lines
513 B
Ruby
19 lines
513 B
Ruby
# 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
|