Projet

Général

Profil

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

root / drupal7 / sites / all / libraries / simplepie / tests / oldtests / feed_title / SPtests / rss / 1.0 / dc / 1.1 / title.php @ 41cc1b08

1
<?php
2

    
3
class SimplePie_Feed_Title_Test_RSS_10_DC_11_Title extends SimplePie_Feed_Title_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://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/">
9
        <channel>
10
                <dc:title>Feed Title</dc:title>
11
        </channel>
12
</rdf:RDF>';
13
        }
14
        
15
        function expected()
16
        {
17
                $this->expected = 'Feed Title';
18
        }
19
}
20

    
21
?>