17 lines
259 B
PHP
17 lines
259 B
PHP
<?php
|
|
|
|
class SimplePie_Absolutize_Test_Bug_691_Test_3 extends SimplePie_Absolutize_Test
|
|
{
|
|
function data()
|
|
{
|
|
$this->data['base'] = 'http://a/b/c';
|
|
$this->data['relative'] = '?0';
|
|
}
|
|
|
|
function expected()
|
|
{
|
|
$this->expected = 'http://a/b/c?0';
|
|
}
|
|
}
|
|
|
|
?>
|