summaryrefslogtreecommitdiff
path: root/ext/zip/tests/oo_open.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/zip/tests/oo_open.phpt')
-rw-r--r--ext/zip/tests/oo_open.phpt46
1 files changed, 0 insertions, 46 deletions
diff --git a/ext/zip/tests/oo_open.phpt b/ext/zip/tests/oo_open.phpt
deleted file mode 100644
index 0760db34c4..0000000000
--- a/ext/zip/tests/oo_open.phpt
+++ /dev/null
@@ -1,46 +0,0 @@
---TEST--
-zip::open() function
---SKIPIF--
-<?php
-/* $Id$ */
-if(!extension_loaded('zip')) die('skip');
-?>
---FILE--
-<?php
-
-$dirname = dirname(__FILE__) . '/';
-$zip = new ZipArchive;
-$r = $zip->open($dirname . 'nofile');
-if ($r !== TRUE) {
- echo "ER_OPEN: ok\n";
-} else {
- echo "ER_OPEN: FAILED\n";
-}
-
-$r = $zip->open($dirname . 'nofile', ZIPARCHIVE::CREATE);
-if (!$r) {
- echo "create: failed\n";
-} else {
- echo "create: ok\n";
-}
-@unlink($dirname . 'nofile');
-
-$zip = new ZipArchive;
-$zip->open('');
-
-if (!$zip->open($dirname . 'test.zip')) {
- exit("failed 1\n");
-}
-
-if ($zip->status == ZIPARCHIVE::ER_OK) {
- echo "OK\n";
-} else {
- echo "failed\n";
-}
-?>
---EXPECTF--
-ER_OPEN: ok
-create: ok
-
-Warning: ZipArchive::open(): Empty string as source in %s on line %d
-OK