X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/f22098f3b76d39e471b72659172f9e374549fa85..efa37f6a837bb89b21ea3d29496fdd8135d05487:/test/controllers/redactions_controller_test.rb diff --git a/test/controllers/redactions_controller_test.rb b/test/controllers/redactions_controller_test.rb index 750f7c9d1..0bf57c310 100644 --- a/test/controllers/redactions_controller_test.rb +++ b/test/controllers/redactions_controller_test.rb @@ -1,5 +1,4 @@ require "test_helper" -require "redactions_controller" class RedactionsControllerTest < ActionController::TestCase ## @@ -71,7 +70,7 @@ class RedactionsControllerTest < ActionController::TestCase def test_create_moderator session[:user] = create(:moderator_user).id - post :create, :redaction => { :title => "Foo", :description => "Description here." } + post :create, :params => { :redaction => { :title => "Foo", :description => "Description here." } } assert_response :redirect assert_redirected_to(redaction_path(Redaction.find_by(:title => "Foo"))) end @@ -79,7 +78,7 @@ class RedactionsControllerTest < ActionController::TestCase def test_create_moderator_invalid session[:user] = create(:moderator_user).id - post :create, :redaction => { :title => "Foo", :description => "" } + post :create, :params => { :redaction => { :title => "Foo", :description => "" } } assert_response :success assert_template :new end @@ -87,7 +86,7 @@ class RedactionsControllerTest < ActionController::TestCase def test_create_non_moderator session[:user] = create(:user).id - post :create, :redaction => { :title => "Foo", :description => "Description here." } + post :create, :params => { :redaction => { :title => "Foo", :description => "Description here." } } assert_response :forbidden end @@ -97,7 +96,7 @@ class RedactionsControllerTest < ActionController::TestCase # create an empty redaction redaction = create(:redaction) - delete :destroy, :id => redaction.id + delete :destroy, :params => { :id => redaction.id } assert_response :redirect assert_redirected_to(redactions_path) end @@ -109,23 +108,23 @@ class RedactionsControllerTest < ActionController::TestCase redaction = create(:redaction) create(:old_node, :redaction => redaction) - delete :destroy, :id => redaction.id + delete :destroy, :params => { :id => redaction.id } assert_response :redirect assert_redirected_to(redaction_path(redaction)) - assert_match /^Redaction is not empty/, flash[:error] + assert_match(/^Redaction is not empty/, flash[:error]) end def test_delete_non_moderator session[:user] = create(:user).id - delete :destroy, :id => create(:redaction).id + delete :destroy, :params => { :id => create(:redaction).id } assert_response :forbidden end def test_edit redaction = create(:redaction) - get :edit, :id => redaction.id + get :edit, :params => { :id => redaction.id } assert_response :redirect assert_redirected_to login_path(:referer => edit_redaction_path(redaction)) end @@ -133,14 +132,14 @@ class RedactionsControllerTest < ActionController::TestCase def test_edit_moderator session[:user] = create(:moderator_user).id - get :edit, :id => create(:redaction).id + get :edit, :params => { :id => create(:redaction).id } assert_response :success end def test_edit_non_moderator session[:user] = create(:user).id - get :edit, :id => create(:redaction).id + get :edit, :params => { :id => create(:redaction).id } assert_response :redirect assert_redirected_to(redactions_path) end @@ -150,7 +149,7 @@ class RedactionsControllerTest < ActionController::TestCase redaction = create(:redaction) - put :update, :id => redaction.id, :redaction => { :title => "Foo", :description => "Description here." } + put :update, :params => { :id => redaction.id, :redaction => { :title => "Foo", :description => "Description here." } } assert_response :redirect assert_redirected_to(redaction_path(redaction)) end @@ -160,7 +159,7 @@ class RedactionsControllerTest < ActionController::TestCase redaction = create(:redaction) - put :update, :id => redaction.id, :redaction => { :title => "Foo", :description => "" } + put :update, :params => { :id => redaction.id, :redaction => { :title => "Foo", :description => "" } } assert_response :success assert_template :edit end @@ -170,7 +169,7 @@ class RedactionsControllerTest < ActionController::TestCase redaction = create(:redaction) - put :update, :id => redaction.id, :redaction => { :title => "Foo", :description => "Description here." } + put :update, :params => { :id => redaction.id, :redaction => { :title => "Foo", :description => "Description here." } } assert_response :forbidden end end