Projet

Général

Profil

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

root / drupal7 / sites / all / libraries / simplepie / tests / oldtests / feed_link / SPtests / atom / 0.3 / link_@rel_alternate.php @ 41cc1b08

1
<?php
2

    
3
class SimplePie_Feed_Link_Test_Atom_03_Link_Alternate extends SimplePie_Feed_Link_Test
4
{
5
        function data()
6
        {
7
                $this->data = 
8
'<feed version="0.3" xmlns="http://purl.org/atom/ns#">
9
        <link href="http://example.com/" rel="alternate"/>
10
</feed>';
11
        }
12
        
13
        function expected()
14
        {
15
                $this->expected = 'http://example.com/';
16
        }
17
}
18

    
19
?>