Sha256: 48b08cb977daa9dcc95b7630334867318c8cf3e424e3f237db52dcf3e8a9a5fb
Contents?: true
Size: 587 Bytes
Versions: 52
Compression:
Stored size: 587 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) require File.expand_path('../shared/peek.rb', __FILE__) require 'strscan' describe "StringScanner#peep" do it_behaves_like(:strscan_peek, :peep) =begin 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 end
Version data entries
52 entries across 52 versions & 2 rubygems