Projet

Général

Profil

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

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

1
<?php
2

    
3
class SimplePie_First_Item_Title_Test_Bug_666_Test_0 extends SimplePie_First_Item_Title_Test
4
{
5
        function data()
6
        {
7
                $this->data = 
8
'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/">
9
        <channel>
10
                <title>Feed Title</title>
11
        </channel>
12
        <item>
13
                <title>Item Title</title>
14
        </item>
15
</rdf:RDF>';
16
        }
17
        
18
        function expected()
19
        {
20
                $this->expected = 'Item Title';
21
        }
22
}
23

    
24
?>