Projet

Général

Profil

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

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

1
<?php
2

    
3
class SimplePie_First_Item_Author_Name_Atom_10_Inheritance_Source_Name extends SimplePie_First_Item_Author_Name_Test
4
{
5
        function data()
6
        {
7
                $this->data = 
8
'<feed xmlns="http://www.w3.org/2005/Atom">
9
        <entry>
10
                <source>
11
                        <author>
12
                                <name>Item Author</name>
13
                        </author>
14
                </source>
15
        </entry>
16
</feed>';
17
        }
18
        
19
        function expected()
20
        {
21
                $this->expected = 'Item Author';
22
        }
23
}
24

    
25
?>