Sha256: cd596fd79c423fce260425f7179180f847cce59a76e1562ec9d16b3cc69ced08

Contents?: true

Size: 303 Bytes

Versions: 33

Compression:

Stored size: 303 Bytes

Contents

describe "String#chr" do
  it "returns an empty String if self is an empty String" do
    "".chr.should == ""
  end

  it "returns a 1-character String" do
    "glark".chr.size.should == 1
  end

  it "returns the character at the start of the String" do
    "Goodbye, world".chr.should == "G"
  end
end

Version data entries

33 entries across 33 versions & 1 rubygems

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