]> git.mxchange.org Git - friendica.git/blob - simplepie/test/first_item_author_name/SPtests/atom/0.3/dc/1.0/creator.php
c095916edcb05292357b90a07ab279367b1b2c15
[friendica.git] / simplepie / test / first_item_author_name / SPtests / atom / 0.3 / dc / 1.0 / creator.php
1 <?php
2
3 class SimplePie_First_Item_Author_Name_Test_Atom_03_DC_10_Creator extends SimplePie_First_Item_Author_Name_Test
4 {
5         function data()
6         {
7                 $this->data = 
8 '<feed version="0.3" xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.0/">
9         <entry>
10                 <dc:creator>Item Author</dc:creator>
11         </entry>
12 </feed>';
13         }
14         
15         function expected()
16         {
17                 $this->expected = 'Item Author';
18         }
19 }
20
21 ?>