aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorFederico Ravasio <ravasio.federico@gmail.com>2013-08-21 17:07:45 +0200
committerFederico Ravasio <ravasio.federico@gmail.com>2013-08-21 17:07:45 +0200
commita9f6c8f8e1034ba8cb8838bc0136828826f66af8 (patch)
tree5ceb76cfec57df6a0a3bf688a436a8a15c197350 /activesupport
parent9773d2c291cd931aba6dda9705f65460a18b32f3 (diff)
downloadrails-a9f6c8f8e1034ba8cb8838bc0136828826f66af8.tar.gz
rails-a9f6c8f8e1034ba8cb8838bc0136828826f66af8.tar.bz2
rails-a9f6c8f8e1034ba8cb8838bc0136828826f66af8.zip
Skip tests involving $SAFE, it's not supported on Rubinius.
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/test/core_ext/thread_test.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/test/core_ext/thread_test.rb b/activesupport/test/core_ext/thread_test.rb
index cf1b48d511..54d2dcd8dd 100644
--- a/activesupport/test/core_ext/thread_test.rb
+++ b/activesupport/test/core_ext/thread_test.rb
@@ -73,6 +73,8 @@ class ThreadExt < ActiveSupport::TestCase
end
def test_thread_variable_security
+ rubinius_skip "$SAFE is not supported on Rubinius."
+
t = Thread.new { sleep }
assert_raises(SecurityError) do