Sha256: 37b8e82ae35b6ff00e56991a494f22bd0f150ef995ba53a25e29c4582109db20

Contents?: true

Size: 730 Bytes

Versions: 41

Compression:

Stored size: 730 Bytes

Contents

require "test_helper"

class Identity::EmailsControllerTest < ActionDispatch::IntegrationTest
  setup do
    @user = sign_in_as(users(:lazaro_nixon))
  end

  test "should get edit" do
    get edit_identity_email_url
    assert_response :success
  end

  test "should update email" do
    patch identity_email_url, params: { email: "new_email@hey.com", current_password: "Secret1*3*5*" }
    assert_redirected_to root_url
  end

  test "should not update email with wrong current password" do
    patch identity_email_url, params: { email: "new_email@hey.com", current_password: "SecretWrong1*3" }

    assert_redirected_to edit_identity_email_url
    assert_equal "The password you entered is incorrect", flash[:alert]
  end
end

Version data entries

41 entries across 41 versions & 1 rubygems

Version Path
authentication-zero-2.16.16 lib/generators/authentication/templates/test_unit/controllers/html/identity/emails_controller_test.rb.tt
authentication-zero-2.16.15 lib/generators/authentication/templates/test_unit/controllers/html/identity/emails_controller_test.rb.tt
authentication-zero-2.16.14 lib/generators/authentication/templates/test_unit/controllers/html/identity/emails_controller_test.rb.tt
authentication-zero-2.16.13 lib/generators/authentication/templates/test_unit/controllers/html/identity/emails_controller_test.rb.tt
authentication-zero-2.16.12 lib/generators/authentication/templates/test_unit/controllers/html/identity/emails_controller_test.rb.tt
authentication-zero-2.16.11 lib/generators/authentication/templates/test_unit/controllers/html/identity/emails_controller_test.rb.tt
authentication-zero-2.16.10 lib/generators/authentication/templates/test_unit/controllers/html/identity/emails_controller_test.rb.tt
authentication-zero-2.16.9 lib/generators/authentication/templates/test_unit/controllers/html/identity/emails_controller_test.rb.tt
authentication-zero-2.16.8 lib/generators/authentication/templates/test_unit/controllers/html/identity/emails_controller_test.rb.tt
authentication-zero-2.16.7 lib/generators/authentication/templates/test_unit/controllers/html/identity/emails_controller_test.rb.tt
authentication-zero-2.16.6 lib/generators/authentication/templates/test_unit/controllers/html/identity/emails_controller_test.rb.tt
authentication-zero-2.15.0 lib/generators/authentication/templates/test_unit/controllers/html/identity/emails_controller_test.rb.tt
authentication-zero-2.14.0 lib/generators/authentication/templates/test_unit/controllers/html/identity/emails_controller_test.rb.tt
authentication-zero-2.13.0 lib/generators/authentication/templates/test_unit/controllers/html/identity/emails_controller_test.rb.tt
authentication-zero-2.12.6 lib/generators/authentication/templates/test_unit/controllers/html/identity/emails_controller_test.rb.tt
authentication-zero-2.12.5 lib/generators/authentication/templates/test_unit/controllers/html/identity/emails_controller_test.rb.tt
authentication-zero-2.12.4 lib/generators/authentication/templates/test_unit/controllers/html/identity/emails_controller_test.rb.tt
authentication-zero-2.12.3 lib/generators/authentication/templates/test_unit/controllers/html/identity/emails_controller_test.rb.tt
authentication-zero-2.12.2 lib/generators/authentication/templates/test_unit/controllers/html/identity/emails_controller_test.rb.tt
authentication-zero-2.12.1 lib/generators/authentication/templates/test_unit/controllers/html/identity/emails_controller_test.rb.tt