Projet

Général

Profil

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

root / drupal7 / sites / all / libraries / simplepie / tests / oldtests / feed_category_label / SPtests / rss / 0.91-netscape / dc / 1.1 / subject.php @ 41cc1b08

1
<?php
2

    
3
class SimplePie_Feed_Category_Label_Test_RSS_091_Netscape_DC_11_Subject extends SimplePie_Feed_Category_Label_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.1/">
10
        <channel>
11
                <dc:subject>Feed Category</dc:subject>
12
        </channel>
13
</rss>';
14
        }
15
        
16
        function expected()
17
        {
18
                $this->expected = 'Feed Category';
19
        }
20
}
21

    
22
?>