spec/arachni/ruby/object_spec.rb in arachni-0.4.7 vs spec/arachni/ruby/object_spec.rb in arachni-1.0

- old
+ new

@@ -17,22 +17,6 @@ b.should == [ [1,2] ] end end - describe '#realsize' do - context 'when the class has instance variables' do - it 'returns an integer > 0' do - s = MyClass.new - s.stuff = 'my stuff' - s.realsize.should > 0 - end - end - context 'when the class has instance variables' do - it 'returns nil' do - s = Empty.new - s.realsize.should == 0 - end - end - end - end