aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/digestor_test.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2013-02-25 05:11:56 -0800
committerDavid Heinemeier Hansson <david@loudthinking.com>2013-02-25 05:11:56 -0800
commit2b7b5f535cac4b2e17955e23d05604388ef72c04 (patch)
tree9714b12cfac04056c8711d42a5c96256e5bde908 /actionpack/test/template/digestor_test.rb
parentadd8b518c50d5c6378b1230f78ea443d8da0edb1 (diff)
parentec23296eb607d7974c7281d520b543640024418f (diff)
downloadrails-2b7b5f535cac4b2e17955e23d05604388ef72c04.tar.gz
rails-2b7b5f535cac4b2e17955e23d05604388ef72c04.tar.bz2
rails-2b7b5f535cac4b2e17955e23d05604388ef72c04.zip
Merge pull request #8530 from dasch/dependency-trackers
Custom dependency trackers for the template digestor
Diffstat (limited to 'actionpack/test/template/digestor_test.rb')
-rw-r--r--actionpack/test/template/digestor_test.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/actionpack/test/template/digestor_test.rb b/actionpack/test/template/digestor_test.rb
index 849e2981a6..e29cecabc0 100644
--- a/actionpack/test/template/digestor_test.rb
+++ b/actionpack/test/template/digestor_test.rb
@@ -2,10 +2,11 @@ require 'abstract_unit'
require 'fileutils'
class FixtureTemplate
- attr_reader :source
+ attr_reader :source, :handler
def initialize(template_path)
@source = File.read(template_path)
+ @handler = ActionView::Template.handler_for_extension(:erb)
rescue Errno::ENOENT
raise ActionView::MissingTemplate.new([], "", [], true, [])
end