mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
9a5d6d6388
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@694 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
33 lines
824 B
Ruby
33 lines
824 B
Ruby
require File.dirname(__FILE__) + '/../abstract_unit'
|
|
|
|
class CustomHandler
|
|
def initialize( view )
|
|
@view = view
|
|
end
|
|
|
|
def render( template, local_assigns )
|
|
[ template,
|
|
local_assigns,
|
|
@view ]
|
|
end
|
|
end
|
|
|
|
class CustomHandlerTest < Test::Unit::TestCase
|
|
def setup
|
|
ActionView::Base.register_template_handler "foo", CustomHandler
|
|
@view = ActionView::Base.new
|
|
end
|
|
|
|
def test_custom_render
|
|
result = @view.render_template( "foo", "hello <%= one %>", "one" => "two" )
|
|
assert_equal(
|
|
[ "hello <%= one %>", { "one" => "two" }, @view ],
|
|
result )
|
|
end
|
|
|
|
def test_unhandled_extension
|
|
# uses the ERb handler by default if the extension isn't recognized
|
|
result = @view.render_template( "bar", "hello <%= one %>", "one" => "two" )
|
|
assert_equal "hello two", result
|
|
end
|
|
end
|