aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/exception_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/test/core_ext/exception_test.rb')
-rw-r--r--activesupport/test/core_ext/exception_test.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/activesupport/test/core_ext/exception_test.rb b/activesupport/test/core_ext/exception_test.rb
index b1ea564a0c..6a60c91380 100644
--- a/activesupport/test/core_ext/exception_test.rb
+++ b/activesupport/test/core_ext/exception_test.rb
@@ -61,4 +61,8 @@ class ExceptionExtTests < Test::Unit::TestCase
assert_kind_of Exception, e
assert_equal [], e.application_backtrace
end
+
+ def test_frozen_error
+ assert_raise(ActiveSupport::FrozenObjectError) { "foo".freeze.gsub!(/oo/,'aa') }
+ end
end