summaryrefslogtreecommitdiff
path: root/spec/ruby/library/stringio/eof_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/stringio/eof_spec.rb')
-rw-r--r--spec/ruby/library/stringio/eof_spec.rb33
1 files changed, 33 insertions, 0 deletions
diff --git a/spec/ruby/library/stringio/eof_spec.rb b/spec/ruby/library/stringio/eof_spec.rb
new file mode 100644
index 0000000000..acc49305f5
--- /dev/null
+++ b/spec/ruby/library/stringio/eof_spec.rb
@@ -0,0 +1,33 @@
+require_relative '../../spec_helper'
+require 'stringio'
+
+describe "StringIO#eof?" do
+ before :each do
+ @io = StringIO.new("eof")
+ end
+
+ it "returns true when self's position is greater than or equal to self's size" do
+ @io.pos = 3
+ @io.eof?.should == true
+
+ @io.pos = 6
+ @io.eof?.should == true
+ end
+
+ it "returns false when self's position is less than self's size" do
+ @io.pos = 0
+ @io.eof?.should == false
+
+ @io.pos = 1
+ @io.eof?.should == false
+
+ @io.pos = 2
+ @io.eof?.should == false
+ end
+end
+
+describe "StringIO#eof" do
+ it "is an alias of StringIO#eof?" do
+ StringIO.instance_method(:eof).should == StringIO.instance_method(:eof?)
+ end
+end