]> git.mxchange.org Git - friendica.git/blob - simplepie/test/first_item_permalink/SPtests/rss/0.92/link.php
Add simplepie
[friendica.git] / simplepie / test / first_item_permalink / SPtests / rss / 0.92 / link.php
1 <?php
2
3 class SimplePie_First_Item_Permalink_Test_RSS_092_Link extends SimplePie_First_Item_Permalink_Test
4 {
5         function data()
6         {
7                 $this->data = 
8 '<rss version="0.92">
9         <channel>
10                 <item>
11                         <link>http://example.com/</link>
12                 </item>
13         </channel>
14 </rss>';
15         }
16         
17         function expected()
18         {
19                 $this->expected = 'http://example.com/';
20         }
21 }
22
23 ?>