Skip to content

Commit

Permalink
synergy ftl. Removed duplicate fields.
Browse files Browse the repository at this point in the history
  • Loading branch information
husman authored and smalyshev committed Oct 1, 2012
1 parent 6ec6b20 commit ad57099
Showing 1 changed file with 0 additions and 39 deletions.
39 changes: 0 additions & 39 deletions tests/output/bug63162.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -11,45 +11,6 @@ var_dump(parse_url('http://user:pass@host'));
var_dump(parse_url('//user:pass@host'));
var_dump(parse_url('//user@host'));
?>
--EXPECTF--
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"
}--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"]=>
Expand Down

0 comments on commit ad57099

Please sign in to comment.