php-src/ext/phar/tests/phar_oo_nosig.phpt
2007-11-25 04:52:49 +00:00

25 lines
457 B
PHP

--TEST--
Phar::getSignature() no signature
--SKIPIF--
<?php if (!extension_loaded("phar")) print "skip"; ?>
<?php if (!extension_loaded("spl")) print "skip SPL not available"; ?>
--INI--
phar.require_hash=0
--FILE--
<?php
require_once 'phar_oo_test.inc';
$phar = new Phar($fname);
var_dump($phar->getSignature());
?>
===DONE===
--CLEAN--
<?php
unlink(dirname(__FILE__) . '/phar_oo_test.phar.php');
__halt_compiler();
?>
--EXPECT--
bool(false)
===DONE===