Commit 78fc11875b177d11e667418d6be6581901a73a35
1 parent
d0271b8a
Exists in
master
and in
29 other branches
Fix task_mailer tests
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
test/unit/task_mailer_test.rb
@@ -18,7 +18,7 @@ class TaskMailerTest < ActiveSupport::TestCase | @@ -18,7 +18,7 @@ class TaskMailerTest < ActiveSupport::TestCase | ||
18 | task.expects(:target_notification_description).returns('the task') | 18 | task.expects(:target_notification_description).returns('the task') |
19 | 19 | ||
20 | requestor = mock() | 20 | requestor = mock() |
21 | - requestor.expects(:notification_emails).returns(['requestor@example.com']) | 21 | + requestor.expects(:notification_emails).returns(['requestor@example.com']).at_least_once |
22 | requestor.expects(:name).returns('my name') | 22 | requestor.expects(:name).returns('my name') |
23 | 23 | ||
24 | environment = mock() | 24 | environment = mock() |
@@ -41,7 +41,7 @@ class TaskMailerTest < ActiveSupport::TestCase | @@ -41,7 +41,7 @@ class TaskMailerTest < ActiveSupport::TestCase | ||
41 | task.expects(:target_notification_description).returns('the task') | 41 | task.expects(:target_notification_description).returns('the task') |
42 | 42 | ||
43 | requestor = mock() | 43 | requestor = mock() |
44 | - requestor.expects(:notification_emails).returns(['requestor@example.com']) | 44 | + requestor.expects(:notification_emails).returns(['requestor@example.com']).at_least_once |
45 | requestor.expects(:name).returns('my name') | 45 | requestor.expects(:name).returns('my name') |
46 | 46 | ||
47 | environment = mock() | 47 | environment = mock() |
@@ -65,7 +65,7 @@ class TaskMailerTest < ActiveSupport::TestCase | @@ -65,7 +65,7 @@ class TaskMailerTest < ActiveSupport::TestCase | ||
65 | task.expects(:target_notification_description).returns('the task') | 65 | task.expects(:target_notification_description).returns('the task') |
66 | 66 | ||
67 | requestor = mock() | 67 | requestor = mock() |
68 | - requestor.expects(:notification_emails).returns(['requestor@example.com']) | 68 | + requestor.expects(:notification_emails).returns(['requestor@example.com']).at_least_once |
69 | requestor.expects(:name).returns('my name') | 69 | requestor.expects(:name).returns('my name') |
70 | 70 | ||
71 | environment = mock() | 71 | environment = mock() |