1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
This commit is contained in:
Benoit Daloze 2021-11-29 15:50:28 +01:00
parent e6d93a27af
commit 67a1e22589
62 changed files with 656 additions and 59 deletions

View file

@ -1,7 +1,24 @@
require_relative '../../spec_helper'
require_relative 'shared/matched_size'
require 'strscan'
describe "StringScanner#matched_size" do
it_behaves_like :strscan_matched_size, :matched_size
before :each do
@s = StringScanner.new("This is a test")
end
it "returns the size of the most recent match" do
@s.check(/This/)
@s.matched_size.should == 4
@s.matched_size.should == 4
@s.scan(//)
@s.matched_size.should == 0
end
it "returns nil if there was no recent match" do
@s.matched_size.should == nil
@s.check(/\d+/)
@s.matched_size.should == nil
@s.terminate
@s.matched_size.should == nil
end
end