Sha256: f42332c3d0c4acb61c74e2d8ab56dc6eb2cb48560692b3672fcc71aa33154b4a

Contents?: true

Size: 250 Bytes

Versions: 33

Compression:

Stored size: 250 Bytes

Contents

describe "String#rstrip" do
  it "returns a copy of self with trailing whitespace removed" do
    "    hello    ".rstrip.should == "    hello"
    "    hello world    ".rstrip.should == "    hello world"
    "hello".rstrip.should == "hello"
  end
end

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
opal-0.5.5 spec/opal/core/string/rstrip_spec.rb
opal-0.5.4 spec/corelib/string/rstrip_spec.rb
opal-0.5.2 spec/corelib/string/rstrip_spec.rb
opal-0.5.0 spec/corelib/string/rstrip_spec.rb
opal-0.4.4 spec/rubyspec/core/string/rstrip_spec.rb
opal-0.4.3 spec/rubyspec/core/string/rstrip_spec.rb
opal-0.4.2 spec/rubyspec/core/string/rstrip_spec.rb
opal-0.4.1 spec/rubyspec/core/string/rstrip_spec.rb
opal-0.4.0 spec/rubyspec/core/string/rstrip_spec.rb
opal-0.3.44 spec/rubyspec/core/string/rstrip_spec.rb
opal-0.3.43 spec/rubyspec/core/string/rstrip_spec.rb
opal-0.3.42 spec/core/string/rstrip_spec.rb
opal-0.3.41 spec/core/string/rstrip_spec.rb
opal-0.3.40 spec/core/string/rstrip_spec.rb
opal-0.3.39 spec/core/string/rstrip_spec.rb
opal-0.3.38 spec/core/string/rstrip_spec.rb
opal-0.3.37 spec/core/string/rstrip_spec.rb
opal-0.3.36 spec/core/string/rstrip_spec.rb
opal-0.3.35 spec/core/string/rstrip_spec.rb
opal-0.3.34 spec/core/string/rstrip_spec.rb