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

17 lines
252 B
PHP

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