Move direct superclass checking to test/t/superclass.rb.

This commit is contained in:
take_cheeze
2014-06-15 15:02:21 +09:00
parent 0042e586db
commit ec5b055694
23 changed files with 30 additions and 90 deletions
-4
View File
@@ -5,10 +5,6 @@ assert('String', '15.2.10') do
assert_equal Class, String.class
end
assert('String superclass', '15.2.10.2') do
assert_equal Object, String.superclass
end
assert('String#<=>', '15.2.10.5.1') do
a = '' <=> ''
b = '' <=> 'not empty'