1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/test/generators/rails_mailer_generator_test.rb

30 lines
1,001 B
Ruby
Raw Normal View History

require 'generators/generator_test_helper'
class RailsMailerGeneratorTest < GeneratorTestCase
def test_generates_mailer
run_generator('mailer', %w(Notifier reset_password))
assert_generated_model_for :notifier, 'ActionMailer::Base' do |model|
assert_has_method model, :reset_password do |name, body|
assert_equal [
"subject 'Notifier#reset_password'",
"recipients ''",
"from ''",
"sent_on sent_at",
"",
"body :greeting => 'Hi,'"
],
body.split("\n").map{|line| line.sub(' '*4, '') }
end
assert_match /^ default_url_options\[:host\] = 'example.com'$/m, model,
'model should include default_url_options :host declaration'
end
assert_generated_views_for :notifier, 'reset_password.erb'
assert_generated_unit_test_for :notifier, 'ActionMailer::TestCase'
assert_generated_file "test/fixtures/notifier/reset_password"
end
end