Sha256: 4bde05c7fd6ad8385ef317a09875b1c72ac910c9ffb5665eaaf6dc29f4d65115
Contents?: true
Size: 320 Bytes
Versions: 13
Compression:
Stored size: 320 Bytes
Contents
describe "Ruby character strings" do it "are produced from character shortcuts" do ?z.should == 'z' end it "should parse string into %[]" do %[foo].should == "foo" %|bar|.should == "bar" %'baz'.should == "baz" end it "interpolate string" do a = 1 %[#{a}23].should == "123" end end
Version data entries
13 entries across 13 versions & 1 rubygems