remove obsolete tests
[m6w6/ext-http] / tests / envrequestjson002.phpt
diff --git a/tests/envrequestjson002.phpt b/tests/envrequestjson002.phpt
deleted file mode 100644 (file)
index 4c404c0..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
---TEST--
-env request json
---SKIPIF--
-<?php
-include "skipif.inc";
-_ext("json");
-?>
---PUT--
-Content-Type: application/json
-
-{"foo": "bar", "a": [1,2,3]}
---FILE--
-<?php
-echo "Test\n";
-print_r($_POST);
-?>
-Done
---EXPECT--
-Test
-Array
-(
-    [foo] => bar
-    [a] => Array
-        (
-            [0] => 1
-            [1] => 2
-            [2] => 3
-        )
-
-)
-Done
-