Projet

Général

Profil

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

root / drupal7 / sites / all / libraries / simplepie / tests / oldtests / first_item_category_label / SPtests / atom / 1.0 / dc / 1.1 / subject.php @ 41cc1b08

1
<?php
2

    
3
class SimplePie_First_Item_Category_Label_Test_Atom_10_DC_11_Subject extends SimplePie_First_Item_Category_Label_Test
4
{
5
        function data()
6
        {
7
                $this->data = 
8
'<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
9
        <entry>
10
                <dc:subject>Item Category</dc:subject>
11
        </entry>
12
</feed>';
13
        }
14
        
15
        function expected()
16
        {
17
                $this->expected = 'Item Category';
18
        }
19
}
20

    
21
?>