Sha256: f29b8a0eb3d58fc65ceb2711f7c85a1ba5701d7dbcb47730fd2018a1be5a7cee
Contents?: true
Size: 1.57 KB
Versions: 83
Compression:
Stored size: 1.57 KB
Contents
require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/../../spec_helper' require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/fixtures/classes.rb' describe "String#strip" do it "returns a new string with leading and trailing whitespace removed" do " hello ".strip.should == "hello" " hello world ".strip.should == "hello world" "\tgoodbye\r\v\n".strip.should == "goodbye" " goodbye \000".strip.should == "goodbye" end it "taints the result when self is tainted" do "".taint.strip.tainted?.should == true "ok".taint.strip.tainted?.should == true " ok ".taint.strip.tainted?.should == true end end describe "String#strip!" do it "modifies self in place and returns self" do a = " hello " a.strip!.should equal(a) a.should == "hello" end it "returns nil if no modifications where made" do a = "hello" a.strip!.should == nil a.should == "hello" end ruby_version_is ""..."1.9" do it "raises a TypeError if self is frozen" do "hello".freeze.strip! # ok, nothing changed "".freeze.strip! # ok, nothing changed lambda { " hello ".freeze.strip! }.should raise_error(TypeError) end end ruby_version_is "1.9" do ruby_bug "#1552", "1.9.2" do it "raises a RuntimeError if self is frozen" do lambda {"hello".freeze.strip! }.should raise_error(RuntimeError) lambda {"".freeze.strip! }.should raise_error(RuntimeError) lambda { " hello ".freeze.strip! }.should raise_error(RuntimeError) end end end end
Version data entries
83 entries across 83 versions & 1 rubygems