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

describe "Zlib.zlib_version" do
  it "returns the version of the libz library" do
    Zlib.zlib_version.should be_an_instance_of(String)
  end
end