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