Sha256: 9fdcc77f7d4faca8e6b9cdd40b34804c8a9b8fc91f2e41f6fcd187313119c6da
Contents?: true
Size: 536 Bytes
Versions: 52
Compression:
Stored size: 536 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) describe "String.new" do it "returns an instance of String" do str = String.new str.should be_kind_of(String) end it "returns a fully-formed String" do str = String.new str.size.should == 0 str << "more" str.should == "more" end it "returns a new string given a string argument" do str1 = "test" str = String.new(str1) str.should be_kind_of(String) str.should == str str << "more" str.should == "testmore" end end
Version data entries
52 entries across 52 versions & 2 rubygems