Commit 63ed4135cb84292b57506b7670dfec900d651449
Exists in
staging
and in
7 other branches
Merge branch 'master' into stable
Showing
2 changed files
with
4 additions
and
4 deletions
Show diff stats
debian/noosfero.links
... | ... | @@ -15,4 +15,4 @@ var/lib/noosfero-data/public/thumbnails usr/share/noosfero/public/th |
15 | 15 | usr/share/noosfero/public/designs/themes/noosfero usr/share/noosfero/public/designs/themes/default |
16 | 16 | usr/share/noosfero/public/designs/icons/tango usr/share/noosfero/public/designs/icons/default |
17 | 17 | usr/share/noosfero/script/noosfero-plugins usr/sbin/noosfero-plugins |
18 | -usr/share/noosfero/Gemfile.lock /dev/null | |
18 | +/dev/null usr/share/noosfero/Gemfile.lock | ... | ... |
test/unit/task_mailer_test.rb
... | ... | @@ -18,7 +18,7 @@ class TaskMailerTest < ActiveSupport::TestCase |
18 | 18 | task.expects(:target_notification_description).returns('the task') |
19 | 19 | |
20 | 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 | 22 | requestor.expects(:name).returns('my name') |
23 | 23 | |
24 | 24 | environment = mock() |
... | ... | @@ -41,7 +41,7 @@ class TaskMailerTest < ActiveSupport::TestCase |
41 | 41 | task.expects(:target_notification_description).returns('the task') |
42 | 42 | |
43 | 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 | 45 | requestor.expects(:name).returns('my name') |
46 | 46 | |
47 | 47 | environment = mock() |
... | ... | @@ -65,7 +65,7 @@ class TaskMailerTest < ActiveSupport::TestCase |
65 | 65 | task.expects(:target_notification_description).returns('the task') |
66 | 66 | |
67 | 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 | 69 | requestor.expects(:name).returns('my name') |
70 | 70 | |
71 | 71 | environment = mock() | ... | ... |