Projet

Général

Profil

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

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

1
<?php
2

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

    
24
?>