aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/deprecation_test.rb
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-12-19 09:03:39 -0200
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-12-19 09:20:51 -0200
commitc5b76b5362e4ba28ff3a5649156c50dff9a86de7 (patch)
tree2612d781e96ce592ae609146f303ffda9eb5f104 /activesupport/test/deprecation_test.rb
parentd799b9c1cf888a528d062cd44903cf2e0ce34a2c (diff)
downloadrails-c5b76b5362e4ba28ff3a5649156c50dff9a86de7.tar.gz
rails-c5b76b5362e4ba28ff3a5649156c50dff9a86de7.tar.bz2
rails-c5b76b5362e4ba28ff3a5649156c50dff9a86de7.zip
Prefer assert_raise instead of flunk + rescue to test for exceptions
Change most tests to make use of assert_raise returning the raised exception rather than relying on a combination of flunk + rescue to check for exception types/messages.
Diffstat (limited to 'activesupport/test/deprecation_test.rb')
-rw-r--r--activesupport/test/deprecation_test.rb9
1 files changed, 3 insertions, 6 deletions
diff --git a/activesupport/test/deprecation_test.rb b/activesupport/test/deprecation_test.rb
index d118b0ddbf..ee1c69502e 100644
--- a/activesupport/test/deprecation_test.rb
+++ b/activesupport/test/deprecation_test.rb
@@ -104,14 +104,11 @@ class DeprecationTest < ActiveSupport::TestCase
message = 'Revise this deprecated stuff now!'
callstack = %w(foo bar baz)
- begin
+ e = assert_raise ActiveSupport::DeprecationException do
ActiveSupport::Deprecation.behavior.first.call(message, callstack)
- rescue ActiveSupport::DeprecationException => e
- assert_equal message, e.message
- assert_equal callstack, e.backtrace
- else
- flunk 'the :raise deprecation behaviour should raise the expected exception'
end
+ assert_equal message, e.message
+ assert_equal callstack, e.backtrace
end
def test_default_stderr_behavior