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