summaryrefslogtreecommitdiffstats
path: root/test/unit/document_test.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-07-08 12:23:47 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-07-08 12:23:47 +0000
commit7acd04fb87229cd35c5c7a765bf1cfe9aaf69052 (patch)
tree5f0ebbf6dad1356c3ec76fff9fb96344c28e138c /test/unit/document_test.rb
parent133ca59edb5aa835fd8c9f967c06d8b5a4e8d581 (diff)
downloadredmine-7acd04fb87229cd35c5c7a765bf1cfe9aaf69052.tar.gz
redmine-7acd04fb87229cd35c5c7a765bf1cfe9aaf69052.zip
Tests should not change settings.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9949 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/document_test.rb')
-rw-r--r--test/unit/document_test.rb9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/unit/document_test.rb b/test/unit/document_test.rb
index ba2d73de7..afcb53d24 100644
--- a/test/unit/document_test.rb
+++ b/test/unit/document_test.rb
@@ -27,10 +27,11 @@ class DocumentTest < ActiveSupport::TestCase
def test_create_should_send_email_notification
ActionMailer::Base.deliveries.clear
- Setting.notified_events << 'document_added'
- doc = Document.new(:project => Project.find(1), :title => 'New document', :category => Enumeration.find_by_name('User documentation'))
-
- assert doc.save
+
+ with_settings :notified_events => %w(document_added) do
+ doc = Document.new(:project => Project.find(1), :title => 'New document', :category => Enumeration.find_by_name('User documentation'))
+ assert doc.save
+ end
assert_equal 1, ActionMailer::Base.deliveries.size
end