Sha256: b09c76a09cdaa69204e88215b263e07a18b013e13f3081962fa5bae1bd624b67
Contents?: true
Size: 507 Bytes
Versions: 19
Compression:
Stored size: 507 Bytes
Contents
require File.expand_path('../../../../spec_helper', __FILE__) require 'zlib' describe 'Zlib::Deflate#params' do ruby_bug '239', '1.9.0' do it 'changes the deflate parameters' do data = 'abcdefghijklm' d = Zlib::Deflate.new Zlib::NO_COMPRESSION, Zlib::MAX_WBITS, Zlib::DEF_MEM_LEVEL, Zlib::DEFAULT_STRATEGY d << data.slice!(0..10) d.params Zlib::BEST_COMPRESSION, Zlib::DEFAULT_STRATEGY d << data Zlib::Inflate.inflate(d.finish).should == 'abcdefghijklm' end end end
Version data entries
19 entries across 19 versions & 2 rubygems