summaryrefslogtreecommitdiff
path: root/spec/rubyspec/library/stringscanner/shared/eos.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/library/stringscanner/shared/eos.rb')
-rw-r--r--spec/rubyspec/library/stringscanner/shared/eos.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/spec/rubyspec/library/stringscanner/shared/eos.rb b/spec/rubyspec/library/stringscanner/shared/eos.rb
deleted file mode 100644
index ea04c764a2..0000000000
--- a/spec/rubyspec/library/stringscanner/shared/eos.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-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