Sha256: ad0de961f280ca00783955a0be942389f72b6d5cfd4c946d06718f49a9e925ac
Contents?: true
Size: 402 Bytes
Versions: 52
Compression:
Stored size: 402 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) require File.expand_path('../fixtures/classes.rb', __FILE__) describe "String#empty?" do it "returns true if the string has a length of zero" do "hello".empty?.should == false " ".empty?.should == false "\x00".empty?.should == false "".empty?.should == true StringSpecs::MyString.new("").empty?.should == true end end
Version data entries
52 entries across 52 versions & 2 rubygems