From 734fa238408375feb9f3e63c34f0d30618974f81 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 13 Mar 2015 05:12:43 +0000 Subject: test_objspace.rb: better assertions * test/objspace/test_objspace.rb: use assertions for better failure messages. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49959 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/objspace/test_objspace.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'test') diff --git a/test/objspace/test_objspace.rb b/test/objspace/test_objspace.rb index 66a8a1683b..b948c82038 100644 --- a/test/objspace/test_objspace.rb +++ b/test/objspace/test_objspace.rb @@ -54,16 +54,16 @@ class TestObjSpace < Test::Unit::TestCase def test_count_objects_size res = ObjectSpace.count_objects_size - assert_equal(false, res.empty?) - assert_equal(true, res[:TOTAL] > 0) + assert_not_empty(res) + assert_operator(res[:TOTAL], :>, 0) arg = {} ObjectSpace.count_objects_size(arg) - assert_equal(false, arg.empty?) + assert_not_empty(arg) end def test_count_nodes res = ObjectSpace.count_nodes - assert_equal(false, res.empty?) + assert_not_empty(res) arg = {} ObjectSpace.count_nodes(arg) assert_not_empty(arg) @@ -73,10 +73,10 @@ class TestObjSpace < Test::Unit::TestCase def test_count_tdata_objects res = ObjectSpace.count_tdata_objects - assert_equal(false, res.empty?) + assert_not_empty(res) arg = {} ObjectSpace.count_tdata_objects(arg) - assert_equal(false, arg.empty?) + assert_not_empty(arg) end def test_reachable_objects_from -- cgit v1.2.3