Projet

Général

Profil

Paste
Télécharger (356 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / libraries / simplepie / tests / oldtests / first_item_author_name / SPtests / atom / 0.3 / name.php @ 41cc1b08

1
<?php
2

    
3
class SimplePie_First_Item_Author_Name_Test_Atom_03_Name 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#">
9
        <entry>
10
                <author>
11
                        <name>Item Author</name>
12
                </author>
13
        </entry>
14
</feed>';
15
        }
16
        
17
        function expected()
18
        {
19
                $this->expected = 'Item Author';
20
        }
21
}
22

    
23
?>