summaryrefslogtreecommitdiff
path: root/tests/basic/014.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/basic/014.phpt')
-rw-r--r--tests/basic/014.phpt17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/basic/014.phpt b/tests/basic/014.phpt
deleted file mode 100644
index 9b7e59f987..0000000000
--- a/tests/basic/014.phpt
+++ /dev/null
@@ -1,17 +0,0 @@
---TEST--
-POST Method test and arrays - 2
---SKIPIF--
-<?php if (php_sapi_name()=='cli') echo 'skip'; ?>
---POST--
-a[]=1&a[]=1
---FILE--
-<?php
-var_dump($_POST['a']);
-?>
---EXPECT--
-array(2) {
- [0]=>
- string(1) "1"
- [1]=>
- string(1) "1"
-}