Moving to github

This commit is contained in:
2026-03-28 19:24:29 -04:00
commit 036fa7ab33
302 changed files with 17838 additions and 0 deletions

0
test/mailers/.keep Normal file
View File

View File

@@ -0,0 +1,11 @@
require "test_helper"
class PasswordResetMailerTest < ActionMailer::TestCase
test "reset_password" do
mail = PasswordResetMailer.reset_password
assert_equal "Reset password", mail.subject
assert_equal [ "to@example.org" ], mail.to
assert_equal [ "from@example.com" ], mail.from
assert_match "Hi", mail.body.encoded
end
end

View File

@@ -0,0 +1,7 @@
# Preview all emails at http://localhost:3000/rails/mailers/password_reset_mailer
class PasswordResetMailerPreview < ActionMailer::Preview
# Preview this email at http://localhost:3000/rails/mailers/password_reset_mailer/reset_password
def reset_password
PasswordResetMailer.reset_password
end
end