From b69199c1da3ef89bdbebb98084bcf6fe31732a53 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 21 Jun 2005 06:54:04 +0000 Subject: Fixed that mailer generator generated fixtures/plural while units expected fixtures/singular #1457 [Scott Barron] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1461 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- railties/CHANGELOG | 2 ++ .../rails_generator/generators/components/mailer/mailer_generator.rb | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'railties') diff --git a/railties/CHANGELOG b/railties/CHANGELOG index bec5b9164a..f223730a01 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Fixed that mailer generator generated fixtures/plural while units expected fixtures/singular #1457 [Scott Barron] + * Added a 'whiny nil' that's aim to ensure that when users pass nil to methods where that isn't appropriate, instead of NoMethodError? and the name of some method used by the framework users will see a message explaining what type of object was expected. Only active in test and development environments by default #1209 [Michael Koziarski] * Fixed the test_helper.rb to be safe for requiring controllers from multiple spots, like app/controllers/article_controller.rb and app/controllers/admin/article_controller.rb, without reloading the environment twice #1390 [Nicholas Seckar] diff --git a/railties/lib/rails_generator/generators/components/mailer/mailer_generator.rb b/railties/lib/rails_generator/generators/components/mailer/mailer_generator.rb index ffa321fb87..bac0cb0175 100644 --- a/railties/lib/rails_generator/generators/components/mailer/mailer_generator.rb +++ b/railties/lib/rails_generator/generators/components/mailer/mailer_generator.rb @@ -8,7 +8,7 @@ class MailerGenerator < Rails::Generator::NamedBase m.directory File.join('app/models', class_path) m.directory File.join('app/views', class_path, file_name) m.directory File.join('test/unit', class_path) - m.directory File.join('test/fixtures', class_path, table_name) + m.directory File.join('test/fixtures', class_path, file_name) # Mailer class and unit test. m.template "mailer.rb", File.join('app/models', @@ -24,7 +24,7 @@ class MailerGenerator < Rails::Generator::NamedBase File.join('app/views', class_path, file_name, "#{action}.rhtml"), :assigns => { :action => action } m.template "fixture.rhtml", - File.join('test/fixtures', class_path, table_name, action), + File.join('test/fixtures', class_path, file_name, action), :assigns => { :action => action } end end -- cgit v1.2.3