diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/mailer_test.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/unit/mailer_test.rb b/test/unit/mailer_test.rb index 8850f8235..68b074a93 100644 --- a/test/unit/mailer_test.rb +++ b/test/unit/mailer_test.rb @@ -273,6 +273,20 @@ class MailerTest < ActiveSupport::TestCase end end + def test_version_file_added + attachements = [ Attachment.find_by_container_type('Version') ] + assert Mailer.deliver_attachments_added(attachements) + assert_not_nil last_email.bcc + assert last_email.bcc.any? + end + + def test_project_file_added + attachements = [ Attachment.find_by_container_type('Project') ] + assert Mailer.deliver_attachments_added(attachements) + assert_not_nil last_email.bcc + assert last_email.bcc.any? + end + def test_news_added news = News.find(:first) valid_languages.each do |lang| |