提交 f48aa14b 编写于 作者: N Neeraj Singh 提交者: José Valim

Better test for ticket [#3914 state:resolved]

Signed-off-by: NJosé Valim <jose.valim@gmail.com>
上级 df40dbe6
......@@ -445,6 +445,17 @@ def filter_three
end
class ::AppSweeper < ActionController::Caching::Sweeper; end
class SweeperTestController < ActionController::Base
cache_sweeper :app_sweeper
def show
render :text => 'hello world'
end
end
def test_sweeper_should_not_block_rendering
response = test_process(SweeperTestController)
assert_equal 'hello world', response.body
end
def test_before_method_of_sweeper_should_always_return_true
sweeper = ActionController::Caching::Sweeper.send(:new)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册