friendica/simplepie/test/absolutize/SPtests/bugs/691.5.php

17 lines
256 B
PHP
Raw Normal View History

2010-07-05 12:34:42 +02:00
<?php
class SimplePie_Absolutize_Test_Bug_691_Test_5 extends SimplePie_Absolutize_Test
{
function data()
{
$this->data['base'] = 'zero://a/b/c';
$this->data['relative'] = 'd';
}
function expected()
{
$this->expected = 'zero://a/b/d';
}
}
?>