Projet

Général

Profil

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

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

1
<?php
2

    
3
class SimplePie_First_Item_Title_Test_Bug_270_Test_0 extends SimplePie_First_Item_Title_Test
4
{
5
        function data()
6
        {
7
                $this->data = 
8
'<feed xmlns="http://www.w3.org/2005/Atom">
9
        <entry>
10
                <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><![CDATA[<title>]]></div></content>
11
                <title>The title</title>
12
        </entry>
13
</feed>';
14
        }
15
        
16
        function expected()
17
        {
18
                $this->expected = 'The title';
19
        }
20
}
21

    
22
?>