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/unscan_spec.rb
eregon 401b64c4e8 Update to ruby/spec@c1b568b
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62656 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2018-03-04 15:09:32 +00:00

28 lines
657 B
Ruby

require_relative '../../spec_helper'
require 'strscan'
describe "StringScanner#unscan" do
before :each do
@s = StringScanner.new("This is a test")
end
it "set the scan pointer to the previous position" do
@s.scan(/This/)
@s.unscan
@s.matched.should == nil
@s.pos.should == 0
end
it "remember only one previous position" do
@s.scan(/This/)
pos = @s.pos
@s.scan(/ is/)
@s.unscan
@s.pos.should == pos
end
it "raises a ScanError when the previous match had failed" do
lambda { @s.unscan }.should raise_error(ScanError)
lambda { @s.scan(/\d/); @s.unscan }.should raise_error(ScanError)
end
end