aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/library/stringscanner/shared/terminate.rb
blob: bf41d097e25806430e9a6b383a565a051f70ffac (plain)
1
2
3
4
5
6
7
8
describe :strscan_terminate, shared: true do
  it "set the scan pointer to the end of the string and clear matching data." do
    s = StringScanner.new('This is a test')
    s.send(@method)
    s.bol?.should be_false
    s.eos?.should be_true
  end
end