From a5bb1f511f6d4ea63360eefe8c3850f9bbb7505a Mon Sep 17 00:00:00 2001 From: Neeraj Singh Date: Fri, 23 Jul 2010 15:51:46 -0400 Subject: strengthening the rescue_from test suites MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: José Valim --- activesupport/test/rescuable_test.rb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/activesupport/test/rescuable_test.rb b/activesupport/test/rescuable_test.rb index ff77e16edd..8d2577c64a 100644 --- a/activesupport/test/rescuable_test.rb +++ b/activesupport/test/rescuable_test.rb @@ -14,6 +14,8 @@ class Stargate include ActiveSupport::Rescuable + rescue_from WraithAttack, :with => :sos_first + rescue_from WraithAttack, :with => :sos rescue_from NuclearExplosion do @@ -45,6 +47,11 @@ class Stargate def sos @result = 'killed' end + + def sos_first + @result = 'sos_first' + end + end class RescueableTest < Test::Unit::TestCase @@ -66,4 +73,11 @@ class RescueableTest < Test::Unit::TestCase @stargate.dispatch :ronanize assert_equal 'dex', @stargate.result end + + def test_rescues_defined_later_are_added_at_end_of_the_rescue_handlers_array + expected = ["WraithAttack", "WraithAttack", "NuclearExplosion", "MadRonon"] + result = @stargate.send(:rescue_handlers).collect {|e| e.first} + assert_equal expected, result + end + end -- cgit v1.2.3