summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/views/mailer/reminder.html.erb2
-rw-r--r--app/views/mailer/reminder.text.erb2
-rw-r--r--test/unit/mailer_test.rb18
3 files changed, 11 insertions, 11 deletions
diff --git a/app/views/mailer/reminder.html.erb b/app/views/mailer/reminder.html.erb
index a219e4f51..6f86fcbf8 100644
--- a/app/views/mailer/reminder.html.erb
+++ b/app/views/mailer/reminder.html.erb
@@ -2,7 +2,7 @@
<ul>
<% @issues.each do |issue| -%>
- <li><%= link_to_issue(issue, :project => true, :only_path => false) %></li>
+ <li><%= link_to_issue(issue, :project => true, :only_path => false) %> (<%= due_date_distance_in_words(issue.due_date) %>)</li>
<% end -%>
</ul>
diff --git a/app/views/mailer/reminder.text.erb b/app/views/mailer/reminder.text.erb
index 4954d3a10..5d38d1ac3 100644
--- a/app/views/mailer/reminder.text.erb
+++ b/app/views/mailer/reminder.text.erb
@@ -1,7 +1,7 @@
<%= l(:mail_body_reminder, :count => @issues.size, :days => @days) %>:
<% @issues.each do |issue| -%>
-* <%= "#{issue.project} - #{issue.tracker} ##{issue.id}: #{issue.subject}" %>
+* <%= "#{issue.project} - #{issue.tracker} ##{issue.id}: #{issue.subject} (#{due_date_distance_in_words(issue.due_date)})" %>
<% end -%>
<%= l(:label_issue_view_all)%> (<%= l(:label_x_open_issues_abbr, :count => @open_issues_count) %>)
diff --git a/test/unit/mailer_test.rb b/test/unit/mailer_test.rb
index 7b77b8997..fa3b5516c 100644
--- a/test/unit/mailer_test.rb
+++ b/test/unit/mailer_test.rb
@@ -624,7 +624,7 @@ class MailerTest < ActiveSupport::TestCase
assert_equal 1, ActionMailer::Base.deliveries.size
mail = last_email
assert mail.bcc.include?('dlopper@somenet.foo')
- assert_mail_body_match 'Bug #3: Error 281 when updating a recipe', mail
+ assert_mail_body_match 'Bug #3: Error 281 when updating a recipe (5 days late)', mail
assert_mail_body_match 'View all issues (2 open)', mail
assert_select_email do
assert_select 'a[href=?]',
@@ -643,7 +643,7 @@ class MailerTest < ActiveSupport::TestCase
assert_equal 1, ActionMailer::Base.deliveries.size
mail = last_email
assert mail.bcc.include?('dlopper@somenet.foo')
- assert_mail_body_match 'Bug #3: Error 281 when updating a recipe', mail
+ assert_mail_body_match 'Bug #3: Error 281 when updating a recipe (En retard de 5 jours)', mail
assert_equal "1 demande(s) arrivent à échéance (42)", mail.subject
end
end
@@ -671,7 +671,7 @@ class MailerTest < ActiveSupport::TestCase
assert_equal 1, ActionMailer::Base.deliveries.size # No mail for dlopper
mail = last_email
assert mail.bcc.include?('dlopper@somenet.foo')
- assert_mail_body_match 'Bug #3: Error 281 when updating a recipe', mail
+ assert_mail_body_match 'Bug #3: Error 281 when updating a recipe (5 days late)', mail
end
def test_reminder_should_include_issues_assigned_to_groups
@@ -697,7 +697,7 @@ class MailerTest < ActiveSupport::TestCase
assert_equal %w(dlopper@somenet.foo jsmith@somenet.foo), recipients
ActionMailer::Base.deliveries.each do |mail|
assert_mail_body_match '1 issue(s) that are assigned to you are due in the next 7 days::', mail
- assert_mail_body_match 'Assigned to group', mail
+ assert_mail_body_match 'Assigned to group (Due in 5 days)', mail
assert_mail_body_match "View all issues (#{mail.bcc.include?('dlopper@somenet.foo') ? 3 : 2} open)", mail
end
end
@@ -748,11 +748,11 @@ class MailerTest < ActiveSupport::TestCase
assert_equal 1, ActionMailer::Base.deliveries.size
assert_select_email do
assert_select 'li', 5
- assert_select 'li:nth-child(1)', /foo/
- assert_select 'li:nth-child(2)', /bar/
- assert_select 'li:nth-child(3)', /baz/
- assert_select 'li:nth-child(4)', /qux/
- assert_select 'li:nth-child(5)', /quux/
+ assert_select 'li:nth-child(1)', /foo \(1 day late\)/
+ assert_select 'li:nth-child(2)', /bar \(1 day late\)/
+ assert_select 'li:nth-child(3)', /baz \(Due in 0 days\)/
+ assert_select 'li:nth-child(4)', /qux \(Due in 1 day\)/
+ assert_select 'li:nth-child(5)', /quux \(Due in 2 days\)/
end
end