summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authormame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-04-14 14:26:51 +0000
committermame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-04-14 14:26:51 +0000
commita8f4f3c2d1aaf18f64905c0a15bab5219b7b301a (patch)
tree8582070fffa290f6b51438188b3df1db59db00f0 /test
parent296995c3db5ca133f044ee918f9c571c3902fb3d (diff)
downloadruby-a8f4f3c2d1aaf18f64905c0a15bab5219b7b301a.tar.gz
ruby-a8f4f3c2d1aaf18f64905c0a15bab5219b7b301a.tar.xz
ruby-a8f4f3c2d1aaf18f64905c0a15bab5219b7b301a.zip
* test/ruby/test_objectspace.rb: add a test for
ObjectSpace.count_objects. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16019 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_objectspace.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/ruby/test_objectspace.rb b/test/ruby/test_objectspace.rb
index a2d016495..6c28d6310 100644
--- a/test/ruby/test_objectspace.rb
+++ b/test/ruby/test_objectspace.rb
@@ -33,4 +33,19 @@ End
deftest_id2ref(true)
deftest_id2ref(false)
deftest_id2ref(nil)
+
+ def test_count_objects
+ h = {}
+ ObjectSpace.count_objects(h)
+ assert_kind_of(Hash, h)
+ assert(h.keys.all? {|x| x.is_a?(Symbol) || x.is_a?(Integer) })
+ assert(h.values.all? {|x| x.is_a?(Integer) })
+
+ h = ObjectSpace.count_objects
+ assert_kind_of(Hash, h)
+ assert(h.keys.all? {|x| x.is_a?(Symbol) || x.is_a?(Integer) })
+ assert(h.values.all? {|x| x.is_a?(Integer) })
+
+ assert_raise(TypeError) { ObjectSpace.count_objects(1) }
+ end
end