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

17 lines
251 B
PHP

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