]> git.mxchange.org Git - friendica.git/blob - simplepie/test/first_item_author_name/SPtests/rss/0.91-userland/atom/0.3/name.php
Add simplepie
[friendica.git] / simplepie / test / first_item_author_name / SPtests / rss / 0.91-userland / atom / 0.3 / name.php
1 <?php
2
3 class SimplePie_First_Item_Author_Name_Test_RSS_091_Userland_Atom_03_Name extends SimplePie_First_Item_Author_Name_Test
4 {
5         function data()
6         {
7                 $this->data = 
8 '<rss version="0.91" xmlns:a="http://purl.org/atom/ns#">
9         <channel>
10                 <item>
11                         <a:author>
12                                 <a:name>Item Author</a:name>
13                         </a:author>
14                 </item>
15         </channel>
16 </rss>';
17         }
18         
19         function expected()
20         {
21                 $this->expected = 'Item Author';
22         }
23 }
24
25 ?>