]> git.mxchange.org Git - friendica.git/blob - simplepie/test/first_item_permalink/SPtests/rss/1.0/link.php
Add simplepie
[friendica.git] / simplepie / test / first_item_permalink / SPtests / rss / 1.0 / link.php
1 <?php
2
3 class SimplePie_First_Item_Permalink_Test_RSS_10_Link extends SimplePie_First_Item_Permalink_Test
4 {
5         function data()
6         {
7                 $this->data = 
8 '<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/">
9         <item>
10                 <link>http://example.com/</link>
11         </item>
12 </rdf:RDF>';
13         }
14         
15         function expected()
16         {
17                 $this->expected = 'http://example.com/';
18         }
19 }
20
21 ?>