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

17 lines
255 B
PHP
Raw Normal View History

2010-07-05 12:34:42 +02:00
<?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';
}
}
?>