summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
Diffstat (limited to 'ext')
-rw-r--r--ext/zip/tests/oo_get_comment.phpt26
1 files changed, 0 insertions, 26 deletions
diff --git a/ext/zip/tests/oo_get_comment.phpt b/ext/zip/tests/oo_get_comment.phpt
deleted file mode 100644
index 2bcbe29543..0000000000
--- a/ext/zip/tests/oo_get_comment.phpt
+++ /dev/null
@@ -1,26 +0,0 @@
---TEST--
-Get Comment
---SKIPIF--
-<?php
-/* $Id$ */
-if(!extension_loaded('zip')) die('skip');
-?>
---FILE--
-<?php
-$dirname = dirname(__FILE__) . '/';
-$file = $dirname . 'test_with_comment.zip';
-include $dirname . 'utils.inc';
-$zip = new ZipArchive;
-if (!$zip->open($file)) {
- exit('failed');
-}
-$idx = $zip->locateName('foo');
-echo $zip->getCommentName('foo') . "\n";
-echo $zip->getCommentIndex($idx);
-
-$zip->close();
-
-?>
---EXPECTF--
-foo comment
-foo comment