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

17 lines
255 B
PHP

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