File: inflater_test.rb

package info (click to toggle)
ruby-zip 1.1.6-1%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 720 kB
  • ctags: 929
  • sloc: ruby: 7,045; makefile: 11
file content (14 lines) | stat: -rw-r--r-- 277 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'test_helper'
class InflaterTest < MiniTest::Unit::TestCase
  include DecompressorTests

  def setup
    super
    @file = File.new("test/data/file1.txt.deflatedData", "rb")
    @decompressor = ::Zip::Inflater.new(@file)
  end

  def teardown
    @file.close
  end
end