summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-02-18 16:37:41 -0200
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-02-20 12:12:05 -0200
commit8673a70f500ae5b0e93336f9213947f0aba67033 (patch)
tree847605a19c9d8415a5da16faf0d02c73acf9e4f3
parenta74a69db689b7e36c0e275a1094b1ad757bd6e86 (diff)
downloadgitlab-ce-8673a70f500ae5b0e93336f9213947f0aba67033.tar.gz
Improve formatted message for tasks when action is a mention
-rw-r--r--app/models/task.rb2
-rw-r--r--features/steps/dashboard/task_queue.rb6
-rw-r--r--spec/models/task_spec.rb8
3 files changed, 11 insertions, 5 deletions
diff --git a/app/models/task.rb b/app/models/task.rb
index cc1f501a7ec..9b11698221d 100644
--- a/app/models/task.rb
+++ b/app/models/task.rb
@@ -46,7 +46,7 @@ class Task < ActiveRecord::Base
def action_name
case action
when ASSIGNED then 'assigned'
- when MENTIONED then 'mentioned on'
+ when MENTIONED then 'mentioned you on'
end
end
diff --git a/features/steps/dashboard/task_queue.rb b/features/steps/dashboard/task_queue.rb
index 53920f585dc..6ff0aff6c21 100644
--- a/features/steps/dashboard/task_queue.rb
+++ b/features/steps/dashboard/task_queue.rb
@@ -31,9 +31,9 @@ class Spinach::Features::DashboardTaskQueue < Spinach::FeatureSteps
expect(page).to have_link project.name_with_namespace
should_see_task(1, "John Doe assigned merge request ##{merge_request.iid}", merge_request.title)
- should_see_task(2, "John Doe mentioned on issue ##{issue.iid}", "#{current_user.to_reference} Wdyt?")
+ should_see_task(2, "John Doe mentioned you on issue ##{issue.iid}", "#{current_user.to_reference} Wdyt?")
should_see_task(3, "John Doe assigned issue ##{issue.iid}", issue.title)
- should_see_task(4, "Mary Jane mentioned on issue ##{issue.iid}", issue.title)
+ should_see_task(4, "Mary Jane mentioned you on issue ##{issue.iid}", issue.title)
end
step 'I mark the pending task as done' do
@@ -77,7 +77,7 @@ class Spinach::Features::DashboardTaskQueue < Spinach::FeatureSteps
end
step 'I should not see tasks related to "Mary Jane" in the list' do
- should_not_see_task "Mary Jane mentioned on issue ##{issue.iid}"
+ should_not_see_task "Mary Jane mentioned you on issue ##{issue.iid}"
end
step 'I should not see tasks related to "Merge Requests" in the list' do
diff --git a/spec/models/task_spec.rb b/spec/models/task_spec.rb
index 916f618471f..2d00c7dbc8c 100644
--- a/spec/models/task_spec.rb
+++ b/spec/models/task_spec.rb
@@ -38,11 +38,17 @@ describe Task, models: true do
end
describe '#action_name' do
- it 'returns assigned when action is assigned' do
+ it 'returns proper message when action is an assigment' do
subject.action = Task::ASSIGNED
expect(subject.action_name).to eq 'assigned'
end
+
+ it 'returns proper message when action is a mention' do
+ subject.action = Task::MENTIONED
+
+ expect(subject.action_name).to eq 'mentioned you on'
+ end
end
describe '#body?' do