Sha256: a8c7323daf214c33dd449424fd8a42ad9325d5e889035f472935905a958d783e

Contents?: true

Size: 515 Bytes

Versions: 3

Compression:

Stored size: 515 Bytes

Contents

require File.expand_path('../shared/peek.rb', __FILE__)
require 'strscan'

describe "StringScanner#peep" do
  it_behaves_like(:strscan_peek, :peep)

  it "warns in verbose mode that the method is obsolete" do
    s = StringScanner.new("abc")
    begin
      old = $VERBOSE
      lambda {
        $VERBOSE = true
        s.peep(1)
      }.should complain(/peep.*obsolete.*peek/)

      lambda {
        $VERBOSE = false
        s.peep(1)
      }.should_not complain
    ensure
      $VERBOSE = old
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

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