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