Projet

Général

Profil

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

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

1
<?php
2

    
3
class SimplePie_First_Item_Author_Name_Atom_03_Inheritance_Feed_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
        <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
?>