Projet

Général

Profil

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

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

1
<?php
2

    
3
class SimplePie_Feed_Title_Test_Bug_20_Test_2 extends SimplePie_Feed_Title_Test
4
{
5
        function data()
6
        {
7
                $this->data = 
8
'<feed xmlns="http://www.w3.org/2005/Atom" xmlns:h="http://www.w3.org/1999/xhtml">
9
        <title type="xhtml"><h:div>Non-default namespace</h:div></title>
10
</feed>';
11
        }
12
        
13
        function expected()
14
        {
15
                $this->expected = 'Non-default namespace';
16
        }
17
}
18

    
19
?>