summaryrefslogtreecommitdiff
path: root/spec/ruby/library/stringscanner/shared/bol.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/stringscanner/shared/bol.rb')
-rw-r--r--spec/ruby/library/stringscanner/shared/bol.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/spec/ruby/library/stringscanner/shared/bol.rb b/spec/ruby/library/stringscanner/shared/bol.rb
index ebcdd7938f..ec5c2051b5 100644
--- a/spec/ruby/library/stringscanner/shared/bol.rb
+++ b/spec/ruby/library/stringscanner/shared/bol.rb
@@ -1,25 +1,25 @@
describe :strscan_bol, shared: true do
it "returns true if the scan pointer is at the beginning of the line, false otherwise" do
s = StringScanner.new("This is a test")
- s.send(@method).should be_true
+ s.send(@method).should == true
s.scan(/This/)
- s.send(@method).should be_false
+ s.send(@method).should == false
s.terminate
- s.send(@method).should be_false
+ s.send(@method).should == false
s = StringScanner.new("hello\nworld")
- s.bol?.should be_true
+ s.bol?.should == true
s.scan(/\w+/)
- s.bol?.should be_false
+ s.bol?.should == false
s.scan(/\n/)
- s.bol?.should be_true
+ s.bol?.should == true
s.unscan
- s.bol?.should be_false
+ s.bol?.should == false
end
it "returns true if the scan pointer is at the end of the line of an empty string." do
s = StringScanner.new('')
s.terminate
- s.send(@method).should be_true
+ s.send(@method).should == true
end
end