]> git.mxchange.org Git - friendica.git/blob - simplepie/test/feed_image_url/SPtests/atom/1.0/icon.php
Add simplepie
[friendica.git] / simplepie / test / feed_image_url / SPtests / atom / 1.0 / icon.php
1 <?php
2
3 class SimplePie_Feed_Image_URL_Test_Atom_10_Icon extends SimplePie_Feed_Image_URL_Test
4 {
5         function data()
6         {
7                 $this->data = 
8 '<feed xmlns="http://www.w3.org/2005/Atom">
9         <icon>http://example.com/</icon>
10 </feed>';
11         }
12         
13         function expected()
14         {
15                 $this->expected = 'http://example.com/';
16         }
17 }
18
19 ?>