aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-11-30 09:52:52 +0100
committerJosé Valim <jose.valim@gmail.com>2011-11-30 09:53:09 +0100
commit38ab982cfff98570b5f12933cff489364845789c (patch)
tree20c563f1e1447234a1dfdb2e385c1ae06bd328ed /activesupport/test
parenta6ee246e5cea1c1a71631c6bef3740a4bf4eb250 (diff)
downloadrails-38ab982cfff98570b5f12933cff489364845789c.tar.gz
rails-38ab982cfff98570b5f12933cff489364845789c.tar.bz2
rails-38ab982cfff98570b5f12933cff489364845789c.zip
Log 'Filter chain halted as CALLBACKNAME rendered or redirected' every time a before callback halts.
Diffstat (limited to 'activesupport/test')
-rw-r--r--activesupport/test/callbacks_test.rb12
1 files changed, 11 insertions, 1 deletions
diff --git a/activesupport/test/callbacks_test.rb b/activesupport/test/callbacks_test.rb
index 2b4adda4d1..e723121bb4 100644
--- a/activesupport/test/callbacks_test.rb
+++ b/activesupport/test/callbacks_test.rb
@@ -461,7 +461,7 @@ module CallbacksTest
set_callback :save, :after, :third
- attr_reader :history, :saved
+ attr_reader :history, :saved, :halted
def initialize
@history = []
end
@@ -490,6 +490,10 @@ module CallbacksTest
@saved = true
end
end
+
+ def halted_callback_hook(filter)
+ @halted = filter
+ end
end
class CallbackObject
@@ -595,6 +599,12 @@ module CallbacksTest
assert_equal ["first", "second", "third", "second", "first"], terminator.history
end
+ def test_termination_invokes_hook
+ terminator = CallbackTerminator.new
+ terminator.save
+ assert_equal ":second", terminator.halted
+ end
+
def test_block_never_called_if_terminated
obj = CallbackTerminator.new
obj.save