Sha256: 740f6aa180b5044cda0299a99824a2408ce7b6435523b1543eaab4ad890fbdaa
Contents?: true
Size: 827 Bytes
Versions: 21
Compression:
Stored size: 827 Bytes
Contents
# encoding: utf-8 require 'test_helper' class ErrorsTest < MiniTest::Test def test_rescue_legacy_zip_error raise ::Zip::Error rescue ::Zip::ZipError end def test_rescue_legacy_zip_entry_exists_error raise ::Zip::EntryExistsError rescue ::Zip::ZipEntryExistsError end def test_rescue_legacy_zip_destination_file_exists_error raise ::Zip::DestinationFileExistsError rescue ::Zip::ZipDestinationFileExistsError end def test_rescue_legacy_zip_compression_method_error raise ::Zip::CompressionMethodError rescue ::Zip::ZipCompressionMethodError end def test_rescue_legacy_zip_entry_name_error raise ::Zip::EntryNameError rescue ::Zip::ZipEntryNameError end def test_rescue_legacy_zip_internal_error raise ::Zip::InternalError rescue ::Zip::ZipInternalError end end
Version data entries
21 entries across 17 versions & 3 rubygems