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