friendica_2021-01/simplepie/test/absolutize/SPtests/bugs/1091.0.1.php

17 lines
283 B
PHP
Raw Normal View History

2010-07-05 12:34:42 +02:00
<?php
class SimplePie_Absolutize_Test_Bug_1091_Test_0_1 extends SimplePie_Absolutize_Test
{
function data()
{
$this->data['base'] = 'http://example.com';
$this->data['relative'] = '//example.net';
}
function expected()
{
$this->expected = 'http://example.net';
}
}
?>