Sha256: 20dcce60603e9418e4cb8cb551dff55f01b1a555ae14ea2eaaec98ea96d36e7f

Contents?: true

Size: 568 Bytes

Versions: 83

Compression:

Stored size: 568 Bytes

Contents

require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/../../spec_helper'

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

83 entries across 83 versions & 1 rubygems

Version Path
rhodes-1.4.2 spec/framework_spec/app/spec/core/string/new_spec.rb
rhodes-1.4.1 spec/framework_spec/app/spec/core/string/new_spec.rb
rhodes-1.4.0 spec/framework_spec/app/spec/core/string/new_spec.rb