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