Sha256: 5eda3dc9eab6a0d8aa7196ea96988bdfcb72d82e105a77388c8b6a40ba0be119
Contents?: true
Size: 264 Bytes
Versions: 33
Compression:
Stored size: 264 Bytes
Contents
describe "String#next" do it "returns an empty string for empty strings" do "".next.should == "" end it "returns the successor by increasing the rightmost alphanumeric" do "abcd".next.should == "abce" "THX1138".next.should == "THX1139" end end
Version data entries
33 entries across 33 versions & 1 rubygems