Projet

Général

Profil

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

root / drupal7 / sites / all / libraries / simplepie / tests / oldtests / feed_category_label / SPtests / bugs / 21.0.php @ 41cc1b08

1
<?php
2

    
3
class SimplePie_Feed_Category_Label_Test_Bug_21_Test_0 extends SimplePie_Feed_Category_Label_Test
4
{
5
        function data()
6
        {
7
                $this->data = 
8
'<feed xmlns="http://www.w3.org/2005/Atom">
9
        <category term="Example category"/>
10
</feed>';
11
        }
12
        
13
        function expected()
14
        {
15
                $this->expected = 'Example category';
16
        }
17
}
18

    
19
?>