Sha256: 6dd160b0dfeee79e322a53f52eaa00c4a42e89030f23c9cc3a9a0ba7b33b020a
Contents?: true
Size: 226 Bytes
Versions: 29
Compression:
Stored size: 226 Bytes
Contents
describe "String#to_a" do it "returns an empty array for empty strings" do "".to_a.should == [] end it "returns an array containing the string for non-empty strings" do "hello".to_a.should == ["hello"] end end
Version data entries
29 entries across 29 versions & 1 rubygems