Projet

Général

Profil

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

root / drupal7 / sites / all / libraries / simplepie / tests / oldtests / feed_category_label / SPtests / rss / 0.92 / dc / 1.0 / subject.php @ 41cc1b08

1
<?php
2

    
3
class SimplePie_Feed_Category_Label_Test_RSS_092_DC_10_Subject extends SimplePie_Feed_Category_Label_Test
4
{
5
        function data()
6
        {
7
                $this->data = 
8
'<rss version="0.92" xmlns:dc="http://purl.org/dc/elements/1.0/">
9
        <channel>
10
                <dc:subject>Feed Category</dc:subject>
11
        </channel>
12
</rss>';
13
        }
14
        
15
        function expected()
16
        {
17
                $this->expected = 'Feed Category';
18
        }
19
}
20

    
21
?>