blob: 95bf7897c0887f7ffba7b744313df27d5ae7f3f3 (
plain) (
tree)
|
|
<?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';
}
}
?>
|