Sha256: 6089ff537e997b8bdee976cde3b7b489a118c616dd73187e34cb977738ef6ab8
Contents?: true
Size: 569 Bytes
Versions: 52
Compression:
Stored size: 569 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) require 'strscan' describe "StringScanner#inspect" do before :each do @s = StringScanner.new("This is a test") end it "returns a String object" do @s.inspect.should be_kind_of(String) end it "returns a string that represents the StringScanner object" do @s.inspect.should == "#<StringScanner 0/14 @ \"This ...\">" @s.scan_until /is/ @s.inspect.should == "#<StringScanner 4/14 \"This\" @ \" is a...\">" @s.terminate @s.inspect.should == "#<StringScanner fin>" end end
Version data entries
52 entries across 52 versions & 2 rubygems