Projet

Général

Profil

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

root / drupal7 / sites / all / libraries / simplepie / tests / oldtests / first_item_category_label / SPtests / rss / 0.91-userland / atom / 1.0 / term.php @ 41cc1b08

1
<?php
2

    
3
class SimplePie_First_Item_Category_Label_Test_RSS_091_Userland_Atom_10_Category_Term extends SimplePie_First_Item_Category_Label_Test
4
{
5
        function data()
6
        {
7
                $this->data = 
8
'<rss version="0.91" xmlns:a="http://www.w3.org/2005/Atom">
9
        <channel>
10
                <item>
11
                        <a:category term="Item Category"/>
12
                </item>
13
        </channel>
14
</rss>';
15
        }
16
        
17
        function expected()
18
        {
19
                $this->expected = 'Item Category';
20
        }
21
}
22

    
23
?>