summaryrefslogtreecommitdiffstats
path: root/test/functional/comments_controller_test.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2010-11-14 16:45:32 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2010-11-14 16:45:32 +0000
commit2fab7bd9b1f16d8e8c352dfe0c13d80ff896ea76 (patch)
tree498b1dbed91edb965db8a1cb46fc6e310fd2681e /test/functional/comments_controller_test.rb
parent2ee45e8cac909991ddf782a8d2947ae99473404a (diff)
downloadredmine-2fab7bd9b1f16d8e8c352dfe0c13d80ff896ea76.tar.gz
redmine-2fab7bd9b1f16d8e8c352dfe0c13d80ff896ea76.zip
Adds leading slash to all assert_redirected_to arguments (#6887).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4407 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/comments_controller_test.rb')
-rw-r--r--test/functional/comments_controller_test.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/comments_controller_test.rb b/test/functional/comments_controller_test.rb
index 1887c4896..7f3f2508f 100644
--- a/test/functional/comments_controller_test.rb
+++ b/test/functional/comments_controller_test.rb
@@ -27,7 +27,7 @@ class CommentsControllerTest < ActionController::TestCase
def test_add_comment
@request.session[:user_id] = 2
post :create, :id => 1, :comment => { :comments => 'This is a test comment' }
- assert_redirected_to 'news/1'
+ assert_redirected_to '/news/1'
comment = News.find(1).comments.find(:first, :order => 'created_on DESC')
assert_not_nil comment
@@ -40,7 +40,7 @@ class CommentsControllerTest < ActionController::TestCase
assert_no_difference 'Comment.count' do
post :create, :id => 1, :comment => { :comments => '' }
assert_response :redirect
- assert_redirected_to 'news/1'
+ assert_redirected_to '/news/1'
end
end
@@ -48,7 +48,7 @@ class CommentsControllerTest < ActionController::TestCase
comments_count = News.find(1).comments.size
@request.session[:user_id] = 2
delete :destroy, :id => 1, :comment_id => 2
- assert_redirected_to 'news/1'
+ assert_redirected_to '/news/1'
assert_nil Comment.find_by_id(2)
assert_equal comments_count - 1, News.find(1).comments.size
end