Projet

Général

Profil

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

root / drupal7 / sites / all / libraries / simplepie / tests / oldtests / first_item_author_name / SPtests / rss / 0.91-netscape / atom / 1.0 / name.php @ 41cc1b08

1
<?php
2

    
3
class SimplePie_First_Item_Author_Name_Test_RSS_091_Netscape_Atom_10_Name extends SimplePie_First_Item_Author_Name_Test
4
{
5
        function data()
6
        {
7
                $this->data = 
8
'<!DOCTYPE rss SYSTEM "http://my.netscape.com/publish/formats/rss-0.91.dtd">
9
<rss version="0.91" xmlns:a="http://www.w3.org/2005/Atom">
10
        <channel>
11
                <item>
12
                        <a:author>
13
                                <a:name>Item Author</a:name>
14
                        </a:author>
15
                </item>
16
        </channel>
17
</rss>';
18
        }
19
        
20
        function expected()
21
        {
22
                $this->expected = 'Item Author';
23
        }
24
}
25

    
26
?>