aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
diff options
context:
space:
mode:
authorYehuda Katz <yehudakatz@YK.local>2010-02-10 14:40:22 -0800
committerYehuda Katz <yehudakatz@YK.local>2010-02-10 14:40:36 -0800
commitff7db40464759687d08a618f8c5784851dd5adb4 (patch)
treec276bc6f2791e45c6ed2d1be419bc716c6a5d41b /activesupport/test
parentbea38d64ee316713054811c5e2af49c8eccb8576 (diff)
downloadrails-ff7db40464759687d08a618f8c5784851dd5adb4.tar.gz
rails-ff7db40464759687d08a618f8c5784851dd5adb4.tar.bz2
rails-ff7db40464759687d08a618f8c5784851dd5adb4.zip
No need to emulate default Ruby behavior in initialize
Diffstat (limited to 'activesupport/test')
-rw-r--r--activesupport/test/rescuable_test.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/activesupport/test/rescuable_test.rb b/activesupport/test/rescuable_test.rb
index 2289a825db..ff77e16edd 100644
--- a/activesupport/test/rescuable_test.rb
+++ b/activesupport/test/rescuable_test.rb
@@ -7,9 +7,6 @@ class NuclearExplosion < StandardError
end
class MadRonon < StandardError
- def initialize(message)
- super(message)
- end
end
class Stargate