Sha256: 0febd578879b9c4b7704e39a85705defa77cc071f55b5645e32c7d373e652c4a

Contents?: true

Size: 824 Bytes

Versions: 8

Compression:

Stored size: 824 Bytes

Contents

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

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
actionpack-1.5.0 test/controller/custom_handler_test.rb
actionpack-1.5.1 test/controller/custom_handler_test.rb
actionpack-1.7.0 test/controller/custom_handler_test.rb
actionpack-1.9.1 test/controller/custom_handler_test.rb
actionpack-1.6.0 test/controller/custom_handler_test.rb
actionpack-1.8.0 test/controller/custom_handler_test.rb
actionpack-1.8.1 test/controller/custom_handler_test.rb
actionpack-1.9.0 test/controller/custom_handler_test.rb