Projet

Général

Profil

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

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

1
<?php
2

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

    
19
?>