Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/helpers/todos_helper_spec.rb')
-rw-r--r--spec/helpers/todos_helper_spec.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/spec/helpers/todos_helper_spec.rb b/spec/helpers/todos_helper_spec.rb
index dfb5cb995bc..4680a43058d 100644
--- a/spec/helpers/todos_helper_spec.rb
+++ b/spec/helpers/todos_helper_spec.rb
@@ -401,6 +401,15 @@ RSpec.describe TodosHelper do
end
end
end
+
+ context 'okr checkin reminder' do
+ it 'returns okr checkin reminder message' do
+ alert_todo.action = Todo::OKR_CHECKIN_REQUESTED
+ expect(helper.todo_action_name(alert_todo)).to eq(
+ format(s_("Todos|requested an OKR update for %{what}"), what: alert_todo.target.title)
+ )
+ end
+ end
end
describe '#todo_due_date' do