summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2012-09-30 19:24:42 -0700
committerStanislav Malyshev <stas@php.net>2012-09-30 19:24:42 -0700
commitbf064112b746a77570aedc8a81a0a8b271c16cd5 (patch)
treeb9adcb46261477127fc9f4543e9b9bd7c670c9e4 /tests
parentad570991cf4433f281215bd7b7caddd95e83c54b (diff)
downloadphp-git-bf064112b746a77570aedc8a81a0a8b271c16cd5.tar.gz
fix test and move to proper place
Diffstat (limited to 'tests')
-rw-r--r--tests/output/bug63162.phpt40
1 files changed, 0 insertions, 40 deletions
diff --git a/tests/output/bug63162.phpt b/tests/output/bug63162.phpt
deleted file mode 100644
index 103a512fa4..0000000000
--- a/tests/output/bug63162.phpt
+++ /dev/null
@@ -1,40 +0,0 @@
---TEST--
-Test parse_url() for bug #63162
---DESCRIPTION--
-This test covers tests the inputs:
-[0]=> http://user:pass@host
-[1]=> //user:pass@host
-[2]=> //user@host
---FILE--
-<?php
-var_dump(parse_url('http://user:pass@host'));
-var_dump(parse_url('//user:pass@host'));
-var_dump(parse_url('//user@host'));
-?>
---EXPECT--
-array(4) {
- ["scheme"]=>
- string(4) "http"
- ["host"]=>
- string(4) "host"
- ["user"]=>
- string(4) "user"
- ["pass"]=>
- string(4) "pass"
-}
-
-array(3) {
- ["host"]=>
- string(4) "host"
- ["user"]=>
- string(4) "user"
- ["pass"]=>
- string(4) "pass"
-}
-
-array(2) {
- ["host"]=>
- string(4) "host"
- ["user"]=>
- string(4) "user"
-}