aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/kernel_test.rb
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2010-04-05 12:15:08 -0700
committerXavier Noria <fxn@hashref.com>2010-04-05 12:15:08 -0700
commit89978f10afbad3f856e2959a811bed1982715408 (patch)
tree9913b04ec5a63e4e88dd70de023dc50029c43690 /activesupport/test/core_ext/kernel_test.rb
parentc140aca361506a3a759fbe03fad8adc748c807bb (diff)
downloadrails-89978f10afbad3f856e2959a811bed1982715408.tar.gz
rails-89978f10afbad3f856e2959a811bed1982715408.tar.bz2
rails-89978f10afbad3f856e2959a811bed1982715408.zip
moves Object#singleton_class to Kernel#singleton_class to match Ruby also there, same for #class_eval to simplify, and adds coverage for class_eval
Diffstat (limited to 'activesupport/test/core_ext/kernel_test.rb')
-rw-r--r--activesupport/test/core_ext/kernel_test.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/activesupport/test/core_ext/kernel_test.rb b/activesupport/test/core_ext/kernel_test.rb
index 1dfc283268..c22af89918 100644
--- a/activesupport/test/core_ext/kernel_test.rb
+++ b/activesupport/test/core_ext/kernel_test.rb
@@ -41,6 +41,17 @@ class KernelTest < Test::Unit::TestCase
def test_silence_stderr_with_return_value
assert_equal 1, silence_stderr { 1 }
end
+
+ def test_singleton_class
+ o = Object.new
+ assert_equal class << o; self end, o.singleton_class
+ end
+
+ def test_class_eval
+ o = Object.new
+ class << o; @x = 1; end
+ assert_equal 1, o.class_eval { @x }
+ end
end
class KernelSupressTest < Test::Unit::TestCase