summaryrefslogtreecommitdiff
path: root/spec/ruby/library/zlib/zstream/avail_out_spec.rb
blob: 2e5a394ec0d7819fe28d059081e441ccb9313b1a (plain)
1
2
3
4
5
6
7
8
9
require_relative '../../../spec_helper'
require 'zlib'

describe "Zlib::ZStream#avail_out" do
  it "returns bytes in the output buffer" do
    z = Zlib::Deflate.new
    z.avail_out.should == 0
  end
end