Sha256: 1d237eb866f3d217ce3d792bd4a076170d41d79c8758084733c12c858c4a0a0d
Contents?: true
Size: 409 Bytes
Versions: 52
Compression:
Stored size: 409 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) require 'strscan' describe "StringScanner#skip" do before :each do @s = StringScanner.new("This is a test") end it "returns length of the match" do @s.skip(/\w+/).should == 4 @s.skip(/\s+\w+/).should == 3 end it "returns nil if there's no match" do @s.skip(/\s+/).should == nil @s.skip(/\d+/).should == nil end end
Version data entries
52 entries across 52 versions & 2 rubygems