1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/test/abstract/helper_test.rb

99 lines
2.4 KiB
Ruby
Raw Normal View History

2009-09-19 13:10:41 -04:00
require 'abstract_unit'
2009-03-03 19:42:20 -05:00
ActionController::Base.helpers_path = File.expand_path('../../fixtures/helpers', __FILE__)
2009-03-03 19:42:20 -05:00
module AbstractController
module Testing
2009-03-03 19:42:20 -05:00
class ControllerWithHelpers < AbstractController::Base
include AbstractController::Rendering
include AbstractController::Helpers
def with_module
render :inline => "Module <%= included_method %>"
end
2009-03-03 19:42:20 -05:00
end
2009-03-03 19:42:20 -05:00
module HelperyTest
def included_method
"Included"
end
end
class AbstractHelpers < ControllerWithHelpers
2009-03-03 19:42:20 -05:00
helper(HelperyTest) do
def helpery_test
"World"
end
end
helper :abc
def with_block
render :inline => "Hello <%= helpery_test %>"
end
def with_symbol
render :inline => "I respond to bare_a: <%= respond_to?(:bare_a) %>"
end
end
class ::HelperyTestController < AbstractHelpers
clear_helpers
end
class AbstractHelpersBlock < ControllerWithHelpers
helper do
include AbstractController::Testing::HelperyTest
2009-03-03 19:42:20 -05:00
end
end
2009-03-03 19:42:20 -05:00
class TestHelpers < ActiveSupport::TestCase
def setup
@controller = AbstractHelpers.new
2009-03-03 19:42:20 -05:00
end
def test_helpers_with_block
@controller.process(:with_block)
assert_equal "Hello World", @controller.response_body
end
def test_helpers_with_module
@controller.process(:with_module)
assert_equal "Module Included", @controller.response_body
end
def test_helpers_with_symbol
@controller.process(:with_symbol)
assert_equal "I respond to bare_a: true", @controller.response_body
end
def test_declare_missing_helper
assert_raise(MissingSourceFile) { AbstractHelpers.helper :missing }
end
def test_helpers_with_module_through_block
@controller = AbstractHelpersBlock.new
@controller.process(:with_module)
assert_equal "Module Included", @controller.response_body
end
2009-03-03 19:42:20 -05:00
end
class ClearHelpersTest < ActiveSupport::TestCase
def setup
@controller = HelperyTestController.new
end
def test_clears_up_previous_helpers
@controller.process(:with_symbol)
assert_equal "I respond to bare_a: false", @controller.response_body
end
def test_includes_controller_default_helper
@controller.process(:with_block)
assert_equal "Hello Default", @controller.response_body
end
end
2009-03-03 19:42:20 -05:00
end
end