diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-07-08 12:23:47 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-07-08 12:23:47 +0000 |
commit | 7acd04fb87229cd35c5c7a765bf1cfe9aaf69052 (patch) | |
tree | 5f0ebbf6dad1356c3ec76fff9fb96344c28e138c /test/functional/news_controller_test.rb | |
parent | 133ca59edb5aa835fd8c9f967c06d8b5a4e8d581 (diff) | |
download | redmine-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/functional/news_controller_test.rb')
-rw-r--r-- | test/functional/news_controller_test.rb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/functional/news_controller_test.rb b/test/functional/news_controller_test.rb index 44c00d73a..dcc6410ed 100644 --- a/test/functional/news_controller_test.rb +++ b/test/functional/news_controller_test.rb @@ -82,12 +82,13 @@ class NewsControllerTest < ActionController::TestCase def test_post_create ActionMailer::Base.deliveries.clear - Setting.notified_events << 'news_added' - @request.session[:user_id] = 2 - post :create, :project_id => 1, :news => { :title => 'NewsControllerTest', + + with_settings :notified_events => %w(news_added) do + post :create, :project_id => 1, :news => { :title => 'NewsControllerTest', :description => 'This is the description', :summary => '' } + end assert_redirected_to '/projects/ecookbook/news' news = News.find_by_title('NewsControllerTest') |