summaryrefslogtreecommitdiff
path: root/ext/phar/tests/phar_commitwrite.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/phar/tests/phar_commitwrite.phpt')
-rw-r--r--ext/phar/tests/phar_commitwrite.phpt42
1 files changed, 0 insertions, 42 deletions
diff --git a/ext/phar/tests/phar_commitwrite.phpt b/ext/phar/tests/phar_commitwrite.phpt
deleted file mode 100644
index 16f35701bd..0000000000
--- a/ext/phar/tests/phar_commitwrite.phpt
+++ /dev/null
@@ -1,42 +0,0 @@
---TEST--
-Phar::setStub()/stopBuffering()
---SKIPIF--
-<?php if (!extension_loaded("phar")) print "skip"; ?>
---INI--
-phar.require_hash=0
-phar.readonly=0
---FILE--
-<?php
-$p = new Phar(dirname(__FILE__) . '/brandnewphar.phar', 0, 'brandnewphar.phar');
-$p['file1.txt'] = 'hi';
-$p->stopBuffering();
-var_dump($p->getStub());
-$p->setStub("<?php
-function __autoload(\$class)
-{
- include 'phar://' . str_replace('_', '/', \$class);
-}
-Phar::mapPhar('brandnewphar.phar');
-include 'phar://brandnewphar.phar/startup.php';
-__HALT_COMPILER();
-?>");
-var_dump($p->getStub());
-?>
-===DONE===
---CLEAN--
-<?php
-unlink(dirname(__FILE__) . '/brandnewphar.phar');
-?>
---EXPECT--
-string(29) "<?php __HALT_COMPILER(); ?>
-"
-string(200) "<?php
-function __autoload($class)
-{
- include 'phar://' . str_replace('_', '/', $class);
-}
-Phar::mapPhar('brandnewphar.phar');
-include 'phar://brandnewphar.phar/startup.php';
-__HALT_COMPILER(); ?>
-"
-===DONE=== \ No newline at end of file