Sha256: cc060ef4b00e716ab97fd6a13ab9526ebf626cf678e1312dd66af6e68aa9a640
Contents?: true
Size: 1002 Bytes
Versions: 3
Compression:
Stored size: 1002 Bytes
Contents
require "test_helper" class PasswordsControllerTest < ActionDispatch::IntegrationTest setup do @<%= singular_table_name %> = sign_in_as(<%= table_name %>(:lazaro_nixon)) end test "should get edit" do get edit_password_url assert_response :success end test "should update password" do patch password_url, params: { current_password: "Secret1*3*5*", password: "Secret6*4*2*", password_confirmation: "Secret6*4*2*" } assert_redirected_to root_url end test "should not update password with wrong current password" do patch password_url, params: { current_password: "SecretWrong1*3", password: "Secret6*4*2*", password_confirmation: "Secret6*4*2*" } assert_redirected_to edit_password_url assert_equal "The current password you entered is incorrect", flash[:alert] end def sign_in_as(<%= singular_table_name %>) post(sign_in_url, params: { email: <%= singular_table_name %>.email, password: "Secret1*3*5*" }); <%= singular_table_name %> end end
Version data entries
3 entries across 3 versions & 1 rubygems