X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/7441f15b4fd59735ae00a16b47cfcf7eb99260a6..f75eb6fe9ef1e0a755c1a1810c5ca15ed58d9d08:/test/controllers/issue_comments_controller_test.rb diff --git a/test/controllers/issue_comments_controller_test.rb b/test/controllers/issue_comments_controller_test.rb index d9b4062c7..99d244ff1 100644 --- a/test/controllers/issue_comments_controller_test.rb +++ b/test/controllers/issue_comments_controller_test.rb @@ -1,15 +1,15 @@ require "test_helper" -class IssueCommentsControllerTest < ActionController::TestCase +class IssueCommentsControllerTest < ActionDispatch::IntegrationTest def test_comment_by_normal_user issue = create(:issue) # Login as normal user - session[:user] = create(:user).id + session_for(create(:user)) - post :create, :params => { :issue_id => issue.id } + post issue_comments_path(:issue_id => issue) assert_response :redirect - assert_redirected_to root_path + assert_redirected_to :controller => :errors, :action => :forbidden assert_equal 0, issue.comments.length end @@ -17,9 +17,9 @@ class IssueCommentsControllerTest < ActionController::TestCase issue = create(:issue) # Login as administrator - session[:user] = create(:administrator_user).id + session_for(create(:administrator_user)) - post :create, :params => { :issue_id => issue.id, :issue_comment => { :body => "test comment" } } + post issue_comments_path(:issue_id => issue, :issue_comment => { :body => "test comment" }) assert_response :redirect assert_redirected_to issue assert_equal 1, issue.comments.length