mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
10 lines
222 B
Ruby
10 lines
222 B
Ruby
![]() |
require File.expand_path('../../../../spec_helper', __FILE__)
|
||
|
require 'zlib'
|
||
|
|
||
|
describe "Zlib::ZStream#avail_in" do
|
||
|
it "returns bytes in the input buffer" do
|
||
|
z = Zlib::Deflate.new
|
||
|
z.avail_in.should == 0
|
||
|
end
|
||
|
end
|