Sha256: c8e6ee8537fa263fb8b6ca1b039c373babe28eed1b6e79ff7488d936ccea5403

Contents?: true

Size: 267 Bytes

Versions: 33

Compression:

Stored size: 267 Bytes

Contents

describe "String#chop" do
  it "returns a new string with the last character removed" do
    "hello\n".chop.should == "hello"
    "hello".chop.should == "hell"
  end

  it "returns an empty string when applied to an empty string" do
    "".chop.should == ""
  end
end

Version data entries

33 entries across 33 versions & 1 rubygems

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