Projet

Général

Profil

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

root / drupal7 / sites / all / libraries / simplepie / tests / oldtests / feed_link / SPtests / rss / 2.0 / atom / 0.3 / link.php @ 41cc1b08

1
<?php
2

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

    
21
?>