Sha256: 757fe6d04cbf68125df8283b13ef293820a2602c45cedb4514bdc6af976e4f30

Contents?: true

Size: 787 Bytes

Versions: 56

Compression:

Stored size: 787 Bytes

Contents

require "test_helper"

class PasswordsControllerTest < ActionDispatch::IntegrationTest
  setup do
    @user = sign_in_as(users(: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
end

Version data entries

56 entries across 56 versions & 1 rubygems

Version Path
authentication-zero-2.16.16 lib/generators/authentication/templates/test_unit/controllers/html/passwords_controller_test.rb.tt
authentication-zero-2.16.15 lib/generators/authentication/templates/test_unit/controllers/html/passwords_controller_test.rb.tt
authentication-zero-2.16.14 lib/generators/authentication/templates/test_unit/controllers/html/passwords_controller_test.rb.tt
authentication-zero-2.16.13 lib/generators/authentication/templates/test_unit/controllers/html/passwords_controller_test.rb.tt
authentication-zero-2.16.12 lib/generators/authentication/templates/test_unit/controllers/html/passwords_controller_test.rb.tt
authentication-zero-2.16.11 lib/generators/authentication/templates/test_unit/controllers/html/passwords_controller_test.rb.tt
authentication-zero-2.16.10 lib/generators/authentication/templates/test_unit/controllers/html/passwords_controller_test.rb.tt
authentication-zero-2.16.9 lib/generators/authentication/templates/test_unit/controllers/html/passwords_controller_test.rb.tt
authentication-zero-2.16.8 lib/generators/authentication/templates/test_unit/controllers/html/passwords_controller_test.rb.tt
authentication-zero-2.16.7 lib/generators/authentication/templates/test_unit/controllers/html/passwords_controller_test.rb.tt
authentication-zero-2.16.6 lib/generators/authentication/templates/test_unit/controllers/html/passwords_controller_test.rb.tt
authentication-zero-2.16.5 lib/generators/authentication/templates/test_unit/controllers/html/passwords_controller_test.rb.tt
authentication-zero-2.16.4 lib/generators/authentication/templates/test_unit/controllers/html/passwords_controller_test.rb.tt
authentication-zero-2.16.3 lib/generators/authentication/templates/test_unit/controllers/html/passwords_controller_test.rb.tt
authentication-zero-2.16.2 lib/generators/authentication/templates/test_unit/controllers/html/passwords_controller_test.rb.tt
authentication-zero-2.16.1 lib/generators/authentication/templates/test_unit/controllers/html/passwords_controller_test.rb.tt
authentication-zero-2.16.0 lib/generators/authentication/templates/test_unit/controllers/html/passwords_controller_test.rb.tt
authentication-zero-2.15.9 lib/generators/authentication/templates/test_unit/controllers/html/passwords_controller_test.rb.tt
authentication-zero-2.15.8 lib/generators/authentication/templates/test_unit/controllers/html/passwords_controller_test.rb.tt
authentication-zero-2.15.7 lib/generators/authentication/templates/test_unit/controllers/html/passwords_controller_test.rb.tt