blob: 4b268e44fc4406d9041739557c5465d3c7aeb5eb (
plain) (
tree)
|
|
<?php
class SimplePie_Absolutize_Test_Bug_274_Test_3 extends SimplePie_Absolutize_Test
{
function data()
{
$this->data['base'] = 'http://a/b';
$this->data['relative'] = 'c';
}
function expected()
{
$this->expected = 'http://a/c';
}
}
?>
|