remove obsolete tests
[m6w6/ext-http] / tests / envrequestbody003.phpt
diff --git a/tests/envrequestbody003.phpt b/tests/envrequestbody003.phpt
deleted file mode 100644 (file)
index c2bde83..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
---TEST--
-env request body
---SKIPIF--
-<?php include "skipif.inc"; ?>
---PUT--
-Content-Type: multipart/form-data;boundary=123
---123
-Content-Disposition: form-data; name="foo"
-
-bar
---123
-Content-Disposition: form-data; name="baz"
-
-buh
---123
-Content-Disposition: form-data; name="up"; filename="up.txt"
-
-foo=bar&baz=buh
---123--
---FILE--
-<?php
-var_dump($_POST);
-var_dump($_FILES);
-?>
-DONE
---EXPECTF--
-array(2) {
-  ["foo"]=>
-  string(3) "bar"
-  ["baz"]=>
-  string(3) "buh"
-}
-array(1) {
-  ["up"]=>
-  array(5) {
-    ["name"]=>
-    string(6) "up.txt"
-    ["type"]=>
-    string(0) ""
-    ["tmp_name"]=>
-    string(%d) "%s"
-    ["error"]=>
-    int(0)
-    ["size"]=>
-    int(15)
-  }
-}
-DONE