1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/library/zlib/zstream/flush_next_out_spec.rb
2020-05-03 12:28:29 +02:00

14 lines
361 B
Ruby

require_relative '../../../spec_helper'
require 'zlib'
describe "Zlib::ZStream#flush_next_out" do
it "flushes the stream and flushes the output buffer" do
zs = Zlib::Inflate.new
zs << [120, 156, 75, 203, 207, 7, 0, 2, 130, 1, 69].pack('C*')
zs.flush_next_out.should == 'foo'
zs.should.finished?
zs.flush_next_out.should == ''
end
end