Installed authentication-zero
This commit is contained in:
26
test/system/identity/emails_test.rb
Normal file
26
test/system/identity/emails_test.rb
Normal file
@@ -0,0 +1,26 @@
|
||||
require "application_system_test_case"
|
||||
|
||||
class Identity::EmailsTest < ApplicationSystemTestCase
|
||||
setup do
|
||||
@user = sign_in_as(users(:lazaro_nixon))
|
||||
end
|
||||
|
||||
test "updating the email" do
|
||||
click_on "Change email address"
|
||||
|
||||
fill_in "New email", with: "new_email@hey.com"
|
||||
fill_in "Password challenge", with: "Secret1*3*5*"
|
||||
click_on "Save changes"
|
||||
|
||||
assert_text "Your email has been changed"
|
||||
end
|
||||
|
||||
test "sending a verification email" do
|
||||
@user.update! verified: false
|
||||
|
||||
click_on "Change email address"
|
||||
click_on "Re-send verification email"
|
||||
|
||||
assert_text "We sent a verification email to your email address"
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user