mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Update to ruby/spec@7f22a0b
This commit is contained in:
parent
e6d93a27af
commit
67a1e22589
62 changed files with 656 additions and 59 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue