Projet

Général

Profil

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

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

1
<?php
2

    
3
class SimplePie_First_Item_Author_Name_Test_RSS_090_Atom_03_Name extends SimplePie_First_Item_Author_Name_Test
4
{
5
        function data()
6
        {
7
                $this->data = 
8
'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://my.netscape.com/rdf/simple/0.9/" xmlns:a="http://purl.org/atom/ns#">
9
        <item>
10
                <a:author>
11
                        <a:name>Item Author</a:name>
12
                </a:author>
13
        </item>
14
</rdf:RDF>';
15
        }
16
        
17
        function expected()
18
        {
19
                $this->expected = 'Item Author';
20
        }
21
}
22

    
23
?>