summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorHannes Magnusson <bjori@php.net>2006-11-16 08:52:15 +0000
committerHannes Magnusson <bjori@php.net>2006-11-16 08:52:15 +0000
commitcf64728899fee19938a4777dab3deb7dda3c9a57 (patch)
tree68d505e7dfb2035a74be5bcd9a804136ed45f4de /ext
parent426dce9ce36a317a2d1f998be5ab26e1eb3678b1 (diff)
downloadphp-git-cf64728899fee19938a4777dab3deb7dda3c9a57.tar.gz
renamed to oo_getcomment.phpt
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