Projet

Général

Profil

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

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

1
<?php
2

    
3
class SimplePie_Feed_Link_Test_Atom_10_Link_Absolute_IRI extends SimplePie_Feed_Link_Test
4
{
5
        function data()
6
        {
7
                $this->data = 
8
'<feed xmlns="http://www.w3.org/2005/Atom">
9
        <link href="http://example.com/" rel="http://www.iana.org/assignments/relation/alternate"/>
10
</feed>';
11
        }
12
        
13
        function expected()
14
        {
15
                $this->expected = 'http://example.com/';
16
        }
17
}
18

    
19
?>