]> git.mxchange.org Git - friendica.git/blob - simplepie/test/feed_image_link/SPtests/rss/0.91-netscape/link.php
Add simplepie
[friendica.git] / simplepie / test / feed_image_link / SPtests / rss / 0.91-netscape / link.php
1 <?php
2
3 class SimplePie_Feed_Image_Link_Test_RSS_091_Netscape_Link extends SimplePie_Feed_Image_Link_Test
4 {
5         function data()
6         {
7                 $this->data = 
8 '<!DOCTYPE rss SYSTEM "http://my.netscape.com/publish/formats/rss-0.91.dtd">
9 <rss version="0.91">
10         <channel>
11                 <image>
12                         <link>http://example.com/</link>
13                 </image>
14         </channel>
15 </rss>';
16         }
17         
18         function expected()
19         {
20                 $this->expected = 'http://example.com/';
21         }
22 }
23
24 ?>