Projet

Général

Profil

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

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

1
<?php
2

    
3
class SimplePie_First_Item_Title_Test_Bug_431_Test_1 extends SimplePie_First_Item_Title_Test
4
{
5
        function data()
6
        {
7
                $this->data = 
8
'<rss version="2.0">
9
        <channel>
10
                <item>
11
                        <image>
12
                                <title>Image title</title>
13
                        </image>
14
                        <title>Item title</title>
15
                </item>
16
        </channel>
17
</rss>';
18
        }
19
        
20
        function expected()
21
        {
22
                $this->expected = 'Item title';
23
        }
24
}
25

    
26
?>