Mistpark/simplepie/test/absolutize/RFC3986.5.4/abnormal/18.php
2010-07-05 03:34:42 -07:00

16 lines
245 B
PHP

<?php
class SimplePie_Absolutize_Test_RFC3986_Abnormal_18 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = 'g#s/../x';
}
function expected()
{
$this->expected = 'http://a/b/c/g#s/../x';
}
}
?>