summaryrefslogtreecommitdiff
path: root/spec/ruby/library/zlib/zstream/avail_in_spec.rb
blob: eddae15830860a7d69f840b0254a25181524b7a3 (plain)
1
2
3
4
5
6
7
8
9
require_relative '../../../spec_helper'
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