aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/library/stringscanner/check_until_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/stringscanner/check_until_spec.rb')
-rw-r--r--spec/ruby/library/stringscanner/check_until_spec.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/spec/ruby/library/stringscanner/check_until_spec.rb b/spec/ruby/library/stringscanner/check_until_spec.rb
new file mode 100644
index 0000000000..e397b2e4c1
--- /dev/null
+++ b/spec/ruby/library/stringscanner/check_until_spec.rb
@@ -0,0 +1,15 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+require 'strscan'
+
+describe "StringScanner#check_until" do
+ before :each do
+ @s = StringScanner.new("This is a test")
+ end
+
+ it "returns the same value of scan_until, but don't advances the scan pointer" do
+ @s.check_until(/a/).should == "This is a"
+ @s.pos.should == 0
+ @s.matched.should == "a"
+ @s.check_until(/test/).should == "This is a test"
+ end
+end