friendica/simplepie/test/absolutize/RFC3986.5.4/normal/10.php

16 lines
233 B
PHP
Raw Normal View History

2010-07-05 12:34:42 +02:00
<?php
class SimplePie_Absolutize_Test_RFC3986_Normal_10 extends SimplePie_Absolutize_Test_RFC3986
{
function data()
{
$this->data['relative'] = 'g#s';
}
function expected()
{
$this->expected = 'http://a/b/c/g#s';
}
}
?>