rails/actionpack/test/abstract_controller/helper_test.rb
Yehuda Katz 9408fcd2e8 Create new ActionController::Middleware class that will work as a normal Rack middleware.
* This initial implementation is a bit hackish, but it uses a normal middleware API
    so it's future-proof when we improve the internals.
2009-08-26 00:18:52 -07:00

45 lines
998 B
Ruby

require File.join(File.expand_path(File.dirname(__FILE__)), "test_helper")
module AbstractController
module Testing
class ControllerWithHelpers < AbstractController::Base
include AbstractController::RenderingController
include Helpers
def render(string)
super(:_template_name => string)
end
append_view_path File.expand_path(File.join(File.dirname(__FILE__), "views"))
end
module HelperyTest
def included_method
"Included"
end
end
class MyHelpers1 < ControllerWithHelpers
helper(HelperyTest) do
def helpery_test
"World"
end
end
def index
render "helper_test.erb"
end
end
class TestHelpers < ActiveSupport::TestCase
def test_helpers
controller = MyHelpers1.new
controller.process(:index)
assert_equal "Hello World : Included", controller.response_body
end
end
end
end