aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test/abstract_unit.rb
diff options
context:
space:
mode:
authorYehuda Katz <wycats@gmail.com>2009-10-15 14:41:59 -0700
committerYehuda Katz <wycats@gmail.com>2009-10-15 14:41:59 -0700
commite1490d4e4c60211173d51e7b21c16dbe4c2d942a (patch)
tree673813015c1328f600862d7de82f2a3f538980d4 /actionmailer/test/abstract_unit.rb
parent02b76862e1ff8ceccb3cd48922ac178462e14892 (diff)
downloadrails-e1490d4e4c60211173d51e7b21c16dbe4c2d942a.tar.gz
rails-e1490d4e4c60211173d51e7b21c16dbe4c2d942a.tar.bz2
rails-e1490d4e4c60211173d51e7b21c16dbe4c2d942a.zip
Change config implementation in AV slightly
Diffstat (limited to 'actionmailer/test/abstract_unit.rb')
-rw-r--r--actionmailer/test/abstract_unit.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailer/test/abstract_unit.rb b/actionmailer/test/abstract_unit.rb
index a226054194..7843623996 100644
--- a/actionmailer/test/abstract_unit.rb
+++ b/actionmailer/test/abstract_unit.rb
@@ -20,7 +20,7 @@ ActiveSupport::Deprecation.debug = true
ActionView::Template.register_template_handler :haml, lambda { |template| "Look its HAML!".inspect }
ActionView::Template.register_template_handler :bak, lambda { |template| "Lame backup".inspect }
-ActionView::Base.config = { :assets_dir => '/nowhere' }
+ActionView::Base::DEFAULT_CONFIG = { :assets_dir => '/nowhere' }
$:.unshift "#{File.dirname(__FILE__)}/fixtures/helpers"