* renaming tests
[m6w6/ext-http] / tests / 020_redirect.phpt
diff --git a/tests/020_redirect.phpt b/tests/020_redirect.phpt
deleted file mode 100644 (file)
index b849ced..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
---TEST--
-http_redirect() with params
---SKIPIF--
-<?php 
-extension_loaded('http') or die('ext/http not available');
-strncasecmp(PHP_SAPI, 'CLI', 3) or die('cannot run tests with CLI');
-?>
---FILE--
-<?php
-http_redirect('redirect', array('a' => 1, 'b' => 2));
-?>
---EXPECTF--
-Status: 302
-Content-type: text/html
-X-Powered-By: PHP/%s
-Location: http://localhost/redirect?a=1&b=2
-
-Redirecting to <a href="http://localhost/redirect?a=1&b=2">http://localhost/redirect?a=1&b=2</a>.
-