summaryrefslogtreecommitdiff
path: root/spec/ruby/library/stringscanner/getbyte_spec.rb
blob: a71c5ee781538ae18c4fbd0a81bb481434ca57e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require_relative '../../spec_helper'
require_relative 'shared/get_byte'
require_relative 'shared/extract_range'
require 'strscan'

describe "StringScanner#getbyte" do
  it_behaves_like :strscan_get_byte, :getbyte

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

    lambda {
      $VERBOSE = false
      s.getbyte
    }.should_not complain
  end

  it_behaves_like :extract_range, :getbyte
end