summaryrefslogtreecommitdiff
path: root/spec/ruby/library/stringscanner/size_spec.rb
blob: 3e475489e3b68ddc96b9cfc03b190a216cd29581 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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