aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/test/controller/filters_test.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/actionpack/test/controller/filters_test.rb b/actionpack/test/controller/filters_test.rb
index 25b78124e3..14f1bd797a 100644
--- a/actionpack/test/controller/filters_test.rb
+++ b/actionpack/test/controller/filters_test.rb
@@ -445,6 +445,17 @@ class FilterTest < ActionController::TestCase
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)