blob: bef790e701568cc9b6084573ca928935878c2ce0 (
plain) (
tree)
|
|
<?php
class SimplePie_Absolutize_Test_RFC3986_Abnormal_15 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = 'g?y/./x';
}
function expected()
{
$this->expected = 'http://a/b/c/g?y/./x';
}
}
?>
|