Sha256: caca1f4793ac941c4ba70af0d7adf00e6abcd47da2a0650b49e4aba0777529c0
Contents?: true
Size: 344 Bytes
Versions: 33
Compression:
Stored size: 344 Bytes
Contents
describe "String#partition" do it "returns an array of substrings based on splitting on the given string" do "hello world".partition("o").should == ["hell", "o", " world"] end it "always returns 3 elements" do "hello".partition("x").should == ["hello", "", ""] "hello".partition("hello").should == ["", "hello", ""] end end
Version data entries
33 entries across 33 versions & 1 rubygems