aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/new_base/test_helper.rb
diff options
context:
space:
mode:
authorCarl Lerche <carllerche@mac.com>2009-03-20 18:38:03 -0700
committerYehuda Katz <wycats@gmail.com>2009-03-23 10:23:14 -0700
commitab17ecfe5d97d5026d67688ddefe11a458701076 (patch)
tree1aa5e9ba238e0b9a2cc9e7bfc19a750ebc5ebd0b /actionpack/test/new_base/test_helper.rb
parentc6123c37030b715d088860ea1ca79060659b0e3c (diff)
downloadrails-ab17ecfe5d97d5026d67688ddefe11a458701076.tar.gz
rails-ab17ecfe5d97d5026d67688ddefe11a458701076.tar.bz2
rails-ab17ecfe5d97d5026d67688ddefe11a458701076.zip
Finished implementing :layout for most of the render options
Diffstat (limited to 'actionpack/test/new_base/test_helper.rb')
-rw-r--r--actionpack/test/new_base/test_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/new_base/test_helper.rb b/actionpack/test/new_base/test_helper.rb
index a66fc321e6..969ae56f05 100644
--- a/actionpack/test/new_base/test_helper.rb
+++ b/actionpack/test/new_base/test_helper.rb
@@ -44,7 +44,7 @@ module ActionController
@subclasses
end
- append_view_path File.join(File.dirname(__FILE__), '..', 'fixtures')
+ # append_view_path File.join(File.dirname(__FILE__), '..', 'fixtures')
CORE_METHODS = self.public_instance_methods
end
@@ -53,7 +53,7 @@ end
module ActionView #:nodoc:
class FixtureTemplate < Template
class FixturePath < Template::Path
- def initialize(hash)
+ def initialize(hash = {})
@hash = {}
hash.each do |k, v|