spec/opal/runtime/class_hierarchy_spec.rb in opal-0.3.25 vs spec/opal/runtime/class_hierarchy_spec.rb in opal-0.3.26

- old
+ new

@@ -1,14 +1,12 @@ describe "Class Hierarchy" do it "should have the right superclasses" do - BasicObject.superclass.should == nil - Object.superclass.should == BasicObject + Object.superclass.should == nil Module.superclass.should == Object Class.superclass.should == Object end it "should have the right classes" do - BasicObject.class.should == Class Object.class.should == Class Class.class.should == Class Module.class.should == Class end \ No newline at end of file