mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
Update generators to use new defaults.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
class <%= class_name %> < ActionMailer::Base
|
||||
self.defaults = { :from => "from@example.com" }
|
||||
self.defaults :from => "from@example.com"
|
||||
<% for action in actions -%>
|
||||
|
||||
# Subject can be set in your I18n file at config/locales/en.yml
|
||||
|
||||
@@ -9,7 +9,7 @@ class MailerGeneratorTest < Rails::Generators::TestCase
|
||||
run_generator
|
||||
assert_file "app/mailers/notifier.rb" do |mailer|
|
||||
assert_match /class Notifier < ActionMailer::Base/, mailer
|
||||
assert_match /self\.defaults\ =\ \{\ :from\ =>\ "from@example\.com"\ \}/, mailer
|
||||
assert_match /self\.defaults :from => "from@example.com"/, mailer
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user