diff options
author | Joshua Peek <josh@joshpeek.com> | 2008-07-19 12:35:42 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2008-07-19 12:35:42 -0500 |
commit | e23156e87bd32206a5ea529fbecc04fdf37d7bc2 (patch) | |
tree | 5d6bcfdd991eb5e98e89f29e0f9637c86652903d /actionmailer/test | |
parent | 746122735269b9077c7d5d99d88e8b22d88ad8d5 (diff) | |
download | rails-e23156e87bd32206a5ea529fbecc04fdf37d7bc2.tar.gz rails-e23156e87bd32206a5ea529fbecc04fdf37d7bc2.tar.bz2 rails-e23156e87bd32206a5ea529fbecc04fdf37d7bc2.zip |
Only create a path for ActionMailer template root instead of a path set. Better fix than 7461227
Diffstat (limited to 'actionmailer/test')
-rwxr-xr-x | actionmailer/test/mail_service_test.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actionmailer/test/mail_service_test.rb b/actionmailer/test/mail_service_test.rb index 7f4a8817ca..e5ecb0e254 100755 --- a/actionmailer/test/mail_service_test.rb +++ b/actionmailer/test/mail_service_test.rb @@ -942,13 +942,13 @@ end # uses_mocha class InheritableTemplateRootTest < Test::Unit::TestCase def test_attr expected = "#{File.dirname(__FILE__)}/fixtures/path.with.dots" - assert_equal [expected], FunkyPathMailer.template_root.map(&:to_s) + assert_equal expected, FunkyPathMailer.template_root sub = Class.new(FunkyPathMailer) sub.template_root = 'test/path' - assert_equal ['test/path'], sub.template_root.map(&:to_s) - assert_equal [expected], FunkyPathMailer.template_root.map(&:to_s) + assert_equal 'test/path', sub.template_root + assert_equal expected, FunkyPathMailer.template_root end end |