instiki/vendor/rails/railties/test/generators/rails_mailer_generator_test.rb
Jacques Distler 5292899c9a Rails 2.1 RC1
Updated Instiki to Rails 2.1 RC1 (aka 2.0.991).
2008-05-17 23:22:34 -05:00

30 lines
1 KiB
Ruby

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_no_match /(self.default_url_options =|default_url_options\[.*\] =)/, model,
'individual mailer models should not set default_url_options because the options are shared by all mailers'
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