aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/filters_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/controller/filters_test.rb')
-rw-r--r--actionpack/test/controller/filters_test.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/actionpack/test/controller/filters_test.rb b/actionpack/test/controller/filters_test.rb
index 1bd625f084..da6dee1540 100644
--- a/actionpack/test/controller/filters_test.rb
+++ b/actionpack/test/controller/filters_test.rb
@@ -99,6 +99,7 @@ class FilterTest < Test::Unit::TestCase
class PrependingController < TestController
prepend_before_filter :wonderful_life
+ skip_before_filter :fire_flash
private
def wonderful_life
@@ -225,7 +226,7 @@ class FilterTest < Test::Unit::TestCase
end
def test_prepending_filter
- assert_equal [ :wonderful_life, :fire_flash, :ensure_login ], PrependingController.before_filters
+ assert_equal [ :wonderful_life, :ensure_login ], PrependingController.before_filters
end
def test_running_filters