lib/generators/authentication/templates/test_unit/system/emails_test.rb.tt in authentication-zero-2.2.8 vs lib/generators/authentication/templates/test_unit/system/emails_test.rb.tt in authentication-zero-2.2.9
- old
+ new
@@ -6,11 +6,11 @@
end
test "updating the email" do
click_on "Change email address"
- fill_in "Current password", with: "secret123"
+ fill_in "Current password", with: "Secret123"
fill_in "New email", with: "new_email@hey.com"
click_on "Save changes"
assert_text "Your email has been changed"
end
@@ -25,10 +25,10 @@
end
def sign_in_as(<%= singular_table_name %>)
visit sign_in_url
fill_in :email, with: <%= singular_table_name %>.email
- fill_in :password, with: "secret123"
+ fill_in :password, with: "Secret123"
click_on "Sign in"
return <%= singular_table_name %>
end
end