mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
16 lines
302 B
Ruby
16 lines
302 B
Ruby
require_relative '../../../spec_helper'
|
|
require 'stringio'
|
|
require 'zlib'
|
|
|
|
describe "Zlib::GzipFile#closed?" do
|
|
it "returns the closed status" do
|
|
io = StringIO.new
|
|
Zlib::GzipWriter.wrap io do |gzio|
|
|
gzio.should_not.closed?
|
|
|
|
gzio.close
|
|
|
|
gzio.should.closed?
|
|
end
|
|
end
|
|
end
|