From a51ded016007832a2a7ece28c2e4a35eb5b5913f Mon Sep 17 00:00:00 2001 From: Greg Beaver Date: Sun, 28 Jan 2007 21:47:29 +0000 Subject: [PATCH] new test for creation of phar in current directory --- ext/phar/tests/phar_create_in_cwd.phpt | 41 ++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 ext/phar/tests/phar_create_in_cwd.phpt diff --git a/ext/phar/tests/phar_create_in_cwd.phpt b/ext/phar/tests/phar_create_in_cwd.phpt new file mode 100644 index 0000000000..8545880565 --- /dev/null +++ b/ext/phar/tests/phar_create_in_cwd.phpt @@ -0,0 +1,41 @@ +--TEST-- +Phar: create a Phar with relative path +--SKIPIF-- + +--INI-- +phar.require_hash=0 +phar.readonly=0 +--FILE-- +commit(); +var_dump($p->getStub()); +$p->commit(""); +var_dump($p->getStub()); +?> +===DONE=== +--CLEAN-- + +--EXPECT-- +string(24) "" +===DONE=== \ No newline at end of file -- 2.50.1