summaryrefslogtreecommitdiff
path: root/ext/zip/tests/zip_entry_compressionmethod.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/zip/tests/zip_entry_compressionmethod.phpt')
-rw-r--r--ext/zip/tests/zip_entry_compressionmethod.phpt24
1 files changed, 0 insertions, 24 deletions
diff --git a/ext/zip/tests/zip_entry_compressionmethod.phpt b/ext/zip/tests/zip_entry_compressionmethod.phpt
deleted file mode 100644
index cabdbb797f..0000000000
--- a/ext/zip/tests/zip_entry_compressionmethod.phpt
+++ /dev/null
@@ -1,24 +0,0 @@
---TEST--
-zip_entry_compressionmethod() function
---SKIPIF--
-<?php
-/* $Id$ */
-if(!extension_loaded('zip')) die('skip');
-?>
---FILE--
-<?php
-$zip = zip_open(dirname(__FILE__)."/test_procedural.zip");
-if (!is_resource($zip)) die("Failure");
-$entries = 0;
-while ($entry = zip_read($zip)) {
- echo zip_entry_compressionmethod($entry)."\n";
-}
-zip_close($zip);
-
-?>
---EXPECT--
-stored
-stored
-stored
-deflated
-