]> git.mxchange.org Git - friendica.git/blob - simplepie/test/feed_image_url/SPtests/rss/1.0/url.php
58ce1fdeb18709d59de511ee850cb59d4808b1f1
[friendica.git] / simplepie / test / feed_image_url / SPtests / rss / 1.0 / url.php
1 <?php
2
3 class SimplePie_Feed_Image_URL_Test_RSS_10_URL extends SimplePie_Feed_Image_URL_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         <image>
10                 <url>http://example.com/</url>
11         </image>
12 </rdf:RDF>';
13         }
14         
15         function expected()
16         {
17                 $this->expected = 'http://example.com/';
18         }
19 }
20
21 ?>