summaryrefslogtreecommitdiff
path: root/spec/services
diff options
context:
space:
mode:
authorMehdi Lahmam <mehdi@lahmam.com>2017-08-07 00:12:13 +0200
committerMehdi Lahmam <mehdi@lahmam.com>2017-08-07 14:40:33 +0200
commit5ad9d94d8e3f9222d69fc0e408ae2e37363bed53 (patch)
treeaad2283e769c3ba29bb8f4bceec685f269719a29 /spec/services
parent4b3011e1c20077470ce946d703d98259f88ef268 (diff)
downloadgitlab-ce-5ad9d94d8e3f9222d69fc0e408ae2e37363bed53.tar.gz
Add `/assign me` alias support for assigning issuables to oneself
Currently, when a user wants to assign an issue/MR to himself, he needs to type his full username or select it from the suggested ones in the dropdown list. This commits suggest a faster solution which is typing `/assign me` Closes #35304.
Diffstat (limited to 'spec/services')
-rw-r--r--spec/services/quick_actions/interpret_service_spec.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/spec/services/quick_actions/interpret_service_spec.rb b/spec/services/quick_actions/interpret_service_spec.rb
index b78ecfb61c4..30fa0ee6873 100644
--- a/spec/services/quick_actions/interpret_service_spec.rb
+++ b/spec/services/quick_actions/interpret_service_spec.rb
@@ -424,6 +424,26 @@ describe QuickActions::InterpretService do
end
end
+ context 'assign command with me alias' do
+ let(:content) { "/assign me" }
+
+ context 'Issue' do
+ it 'fetches assignee and populates assignee_ids if content contains /assign' do
+ _, updates = service.execute(content, issue)
+
+ expect(updates).to eq(assignee_ids: [developer.id])
+ end
+ end
+
+ context 'Merge Request' do
+ it 'fetches assignee and populates assignee_ids if content contains /assign' do
+ _, updates = service.execute(content, merge_request)
+
+ expect(updates).to eq(assignee_ids: [developer.id])
+ end
+ end
+ end
+
it_behaves_like 'empty command' do
let(:content) { '/assign @abcd1234' }
let(:issuable) { issue }