friendica/simplepie/test/absolutize/SPtests/bugs/691.8.php

17 lines
258 B
PHP

<?php
class SimplePie_Absolutize_Test_Bug_691_Test_8 extends SimplePie_Absolutize_Test
{
function data()
{
$this->data['base'] = 'http://a/b/c#0';
$this->data['relative'] = 'd';
}
function expected()
{
$this->expected = 'http://a/b/d';
}
}
?>