Methods
N
Attributes
[R] handler
[R] source
Class Public methods
new(template_path)
# File actionview/test/template/digestor_test.rb, line 8
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