summaryrefslogtreecommitdiff
path: root/spec/ruby/library/stringio/each_byte_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/stringio/each_byte_spec.rb')
-rw-r--r--spec/ruby/library/stringio/each_byte_spec.rb46
1 files changed, 43 insertions, 3 deletions
diff --git a/spec/ruby/library/stringio/each_byte_spec.rb b/spec/ruby/library/stringio/each_byte_spec.rb
index 6f82a32441..1be0081c1e 100644
--- a/spec/ruby/library/stringio/each_byte_spec.rb
+++ b/spec/ruby/library/stringio/each_byte_spec.rb
@@ -1,11 +1,51 @@
require_relative '../../spec_helper'
require 'stringio'
-require_relative 'shared/each_byte'
describe "StringIO#each_byte" do
- it_behaves_like :stringio_each_byte, :each_byte
+ before :each do
+ @io = StringIO.new("xyz")
+ end
+
+ it "yields each character code in turn" do
+ seen = []
+ @io.each_byte { |b| seen << b }
+ seen.should == [120, 121, 122]
+ end
+
+ it "updates the position before each yield" do
+ seen = []
+ @io.each_byte { |b| seen << @io.pos }
+ seen.should == [1, 2, 3]
+ end
+
+ it "does not yield if the current position is out of bounds" do
+ @io.pos = 1000
+ seen = nil
+ @io.each_byte { |b| seen = b }
+ seen.should == nil
+ end
+
+ it "returns self" do
+ @io.each_byte {}.should.equal?(@io)
+ end
+
+ it "returns an Enumerator when passed no block" do
+ enum = @io.each_byte
+ enum.instance_of?(Enumerator).should == true
+
+ seen = []
+ enum.each { |b| seen << b }
+ seen.should == [120, 121, 122]
+ end
end
describe "StringIO#each_byte when self is not readable" do
- it_behaves_like :stringio_each_byte_not_readable, :each_byte
+ it "raises an IOError" do
+ io = StringIO.new(+"xyz", "w")
+ -> { io.each_byte { |b| b } }.should.raise(IOError)
+
+ io = StringIO.new("xyz")
+ io.close_read
+ -> { io.each_byte { |b| b } }.should.raise(IOError)
+ end
end