Projet

Général

Profil

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

root / drupal7 / sites / all / libraries / simplepie / tests / oldtests / first_item_content / SPtests / rss / 0.91-netscape / dc / 1.0 / description.php @ 41cc1b08

1
<?php
2

    
3
class SimplePie_First_Item_Content_Test_RSS_091_Netscape_DC_10_Description extends SimplePie_First_Item_Content_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:dc="http://purl.org/dc/elements/1.0/">
10
        <channel>
11
                <item>
12
                        <dc:description>Item Description</dc:description>
13
                </item>
14
        </channel>
15
</rss>';
16
        }
17
        
18
        function expected()
19
        {
20
                $this->expected = 'Item Description';
21
        }
22
}
23

    
24
?>