Projet

Général

Profil

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

root / drupal7 / sites / all / libraries / simplepie / tests / oldtests / feed_description / SPtests / atom / 0.3 / tagline.php @ 41cc1b08

1
<?php
2

    
3
class SimplePie_Feed_Description_Test_Atom_03_Tagline extends SimplePie_Feed_Description_Test
4
{
5
        function data()
6
        {
7
                $this->data = 
8
'<feed version="0.3" xmlns="http://purl.org/atom/ns#">
9
        <tagline>Feed Description</tagline>
10
</feed>';
11
        }
12
        
13
        function expected()
14
        {
15
                $this->expected = 'Feed Description';
16
        }
17
}
18

    
19
?>