Projet

Général

Profil

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

root / drupal7 / sites / all / libraries / simplepie / tests / oldtests / first_item_id / SPtests / rss / 0.91-userland / atom / 0.3 / id.php @ 41cc1b08

1
<?php
2

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

    
23
?>