1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/library/stringscanner/size_spec.rb
2021-11-29 15:50:28 +01:00

17 lines
365 B
Ruby

require_relative '../../spec_helper'
require 'strscan'
describe "StringScanner#size" do
before :each do
@s = StringScanner.new("This is a test")
end
it "returns the number of captures groups of the last match" do
@s.scan(/(.)(.)(.)/)
@s.size.should == 4
end
it "returns nil if there is no last match" do
@s.size.should == nil
end
end