]> git.mxchange.org Git - friendica.git/blob - simplepie/test/absolutize/SPtests/bugs/691.1.php
Add simplepie
[friendica.git] / simplepie / test / absolutize / SPtests / bugs / 691.1.php
1 <?php
2
3 class SimplePie_Absolutize_Test_Bug_691_Test_1 extends SimplePie_Absolutize_Test
4 {
5         function data()
6         {
7                 $this->data['base'] = 'http://a/b/c';
8                 $this->data['relative'] = '//0';
9         }
10         
11         function expected()
12         {
13                 $this->expected = 'http://0';
14         }
15 }
16
17 ?>