diff options
-rw-r--r-- | shard.yml | 2 | ||||
-rw-r--r-- | spec/zip_spec.cr | 15 | ||||
-rw-r--r-- | src/zip.cr | 2 |
3 files changed, 16 insertions, 3 deletions
@@ -1,5 +1,5 @@ name: zip-crystal -version: 0.1.0 +version: 0.1.1 authors: - Paul Duncan <pabs@pablotron.org> diff --git a/spec/zip_spec.cr b/spec/zip_spec.cr index 7f539cc..8d58f25 100644 --- a/spec/zip_spec.cr +++ b/spec/zip_spec.cr @@ -93,7 +93,6 @@ describe Zip do puts "file has #{zip.size} entries" zip.each do |e| - if e.dir? puts "#{e.path} is a directory" else @@ -105,4 +104,18 @@ describe Zip do end end end + + it "reads jnl.zip" do + Zip.read(File.join(TEST_DIR, "jnl.zip")) do |zip| + puts "file has #{zip.size} entries" + + zip.each do |e| + if e.dir? + puts "#{e.path} is a directory" + else + puts "#{e.path} is a file" + end + end + end + end end @@ -77,7 +77,7 @@ module Zip # # Version of zip-crystal library. # - VERSION = "0.1.0" + VERSION = "0.1.1" # # Magic numbers for various data in Zip stream. |