Sha256: e1f4a01cad9b965d7e950ffe17a1f09d0e9a276b35040772b19602d726eb5668
Contents?: true
Size: 201 Bytes
Versions: 10
Compression:
Stored size: 201 Bytes
Contents
describe "String#clone" do it "produces a copy of the original" do str = "a string" str_copy = str.dup str_copy.should == str str_copy.object_id.should_not == str.object_id end end
Version data entries
10 entries across 10 versions & 1 rubygems