blob: e79008fa9d407fec01b73e6a1d4587ab2962fca0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
require 'abstract_unit'
ActionController::Base.helpers_path = File.expand_path('../../fixtures/helpers', __FILE__)
module AbstractController
module Testing
class ControllerWithHelpers < AbstractController::Base
include AbstractController::Rendering
include AbstractController::Helpers
def with_module
render :inline => "Module <%= included_method %>"
end
end
module HelperyTest
def included_method
"Included"
end
end
class AbstractHelpers < ControllerWithHelpers
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
end
end
class TestHelpers < ActiveSupport::TestCase
def setup
@controller = AbstractHelpers.new
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
begin
AbstractHelpers.helper :missing
flunk "should have raised an exception"
rescue LoadError => e
assert_equal "helpers/missing_helper.rb", e.path
end
end
def test_helpers_with_module_through_block
@controller = AbstractHelpersBlock.new
@controller.process(:with_module)
assert_equal "Module Included", @controller.response_body
end
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
end
end
|