Projet

Général

Profil

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

root / drupal7 / sites / all / libraries / simplepie / tests / oldtests / feed_title / SPtests / atom / 1.0 / dc / 1.0 / title.php @ 41cc1b08

1
<?php
2

    
3
class SimplePie_Feed_Title_Test_Atom_10_DC_10_Title extends SimplePie_Feed_Title_Test
4
{
5
        function data()
6
        {
7
                $this->data = 
8
'<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.0/">
9
        <dc:title>Feed Title</dc:title>
10
</feed>';
11
        }
12
        
13
        function expected()
14
        {
15
                $this->expected = 'Feed Title';
16
        }
17
}
18

    
19
?>