Projet

Général

Profil

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

root / drupal7 / sites / all / libraries / simplepie / tests / oldtests / first_item_date / SPtests / rss / 1.0 / atom / 1.0 / published.php @ 41cc1b08

1
<?php
2

    
3
class SimplePie_First_Item_Date_Test_RSS_10_Atom_10_Published extends SimplePie_First_Item_Date_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:a="http://www.w3.org/2005/Atom">
9
        <item>
10
                <a:published>2007-01-11T16:00:00Z</a:published>
11
        </item>
12
</rdf:RDF>';
13
        }
14
        
15
        function expected()
16
        {
17
                $this->expected = 1168531200;
18
        }
19
}
20

    
21
?>