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