aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/library/stringscanner/shared/eos.rb
blob: ea04c764a28921786278d62233996331fe18abbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
describe :strscan_eos, shared: true do
  before :each do
    @s = StringScanner.new("This is a test")
  end

  it "returns true if the scan pointer is at the end of the string" do
    @s.terminate
    @s.send(@method).should be_true

    s = StringScanner.new('')
    s.send(@method).should be_true
  end

  it "returns false if the scan pointer is not at the end of the string" do
    @s.send(@method).should be_false
  end
end