Projet

Général

Profil

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

root / drupal7 / sites / all / libraries / simplepie / tests / oldtests / first_item_id / SPtests / rss / 0.90 / dc / 1.1 / identifier.php @ 41cc1b08

1
<?php
2

    
3
class SimplePie_First_Item_ID_Test_RSS_090_DC_11_Identifier extends SimplePie_First_Item_ID_Test
4
{
5
        function data()
6
        {
7
                $this->data = 
8
'<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://my.netscape.com/rdf/simple/0.9/" xmlns:dc="http://purl.org/dc/elements/1.1/">
9
        <item>
10
                <dc:identifier>http://example.com/</dc:identifier>
11
        </item>
12
</rdf:RDF>';
13
        }
14
        
15
        function expected()
16
        {
17
                $this->expected = 'http://example.com/';
18
        }
19
}
20

    
21
?>