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