diff --git a/test/controllers/custom_registrations_controller_test.rb b/test/controllers/custom_registrations_controller_test.rb index e56fddc7..31a93b87 100644 --- a/test/controllers/custom_registrations_controller_test.rb +++ b/test/controllers/custom_registrations_controller_test.rb @@ -12,24 +12,24 @@ class CustomRegistrationsControllerTest < ActionController::TestCase end test "yield resource to block on create success" do - post :create, {user: {:email => "user@example.org", :password => "password", :password_confirmation => "password"}} + post :create, { user: { email: "user@example.org", password: "password", password_confirmation: "password" } } assert @controller.create_block_called?, "create failed to yield resource to provided block" end test "yield resource to block on create failure" do - post :create, {user: {}} + post :create, { user: { } } assert @controller.create_block_called?, "create failed to yield resource to provided block" end test "yield resource to block on update success" do sign_in @user - put :update, {user: {current_password: @password}} + put :update, { user: { current_password: @password } } assert @controller.update_block_called?, "update failed to yield resource to provided block" end test "yield resource to block on update failure" do sign_in @user - put :update, {user: {}} + put :update, { user: { } } assert @controller.update_block_called?, "update failed to yield resource to provided block" end end