Sha256: 1e00c0dd38042e96b17d372db53298289cea89ef6eabceeb7fd2a681869f2af2

Contents?: true

Size: 868 Bytes

Versions: 3

Compression:

Stored size: 868 Bytes

Contents

require 'strscan'

describe "StringScanner#scan_full" do
  before :each do
    @s = StringScanner.new("This is a test")
  end

  it "returns the number of bytes advanced" do
    orig_pos = @s.pos
    @s.scan_full(/This/, false, false).should == 4
    @s.pos.should == orig_pos
  end

  it "returns the number of bytes advanced and advances the scan pointer if the second argument is true" do
    @s.scan_full(/This/, true, false).should == 4
    @s.pos.should == 4
  end

  it "returns the matched string if the third argument is true" do
    orig_pos = @s.pos
    @s.scan_full(/This/, false, true).should == "This"
    @s.pos.should == orig_pos
  end

  it "returns the matched string if the third argument is true and advances the scan pointer if the second argument is true" do
    @s.scan_full(/This/, true, true).should == "This"
    @s.pos.should == 4
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rubysl-strscan-1.0.1 spec/scan_full_spec.rb
rubysl-strscan-1.0.0 spec/scan_full_spec.rb
rubysl-strscan-2.0.0 spec/scan_full_spec.rb