Merge branch 'zj-slash-commands-improvements' into 'master'

Slash commands improvements

See merge request !7638
This commit is contained in:
Kamil Trzciński 2016-11-25 13:09:18 +00:00
commit fc03501183
2 changed files with 9 additions and 1 deletions

View File

@ -2,7 +2,7 @@ module Gitlab
module ChatCommands
class IssueShow < IssueCommand
def self.match(text)
/\Aissue\s+show\s+(?<iid>\d+)/.match(text)
/\Aissue\s+show\s+#{Issue.reference_prefix}?(?<iid>\d+)/.match(text)
end
def self.help_message

View File

@ -19,6 +19,14 @@ describe Gitlab::ChatCommands::IssueShow, service: true do
it 'returns the issue' do
expect(subject.iid).to be issue.iid
end
context 'when its reference is given' do
let(:regex_match) { described_class.match("issue show #{issue.to_reference}") }
it 'shows the issue' do
expect(subject.iid).to be issue.iid
end
end
end
context 'the issue does not exist' do