Projet

Général

Profil

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

root / drupal7 / sites / all / libraries / simplepie / tests / oldtests / first_item_date / SPtests / atom / 0.3 / dc / 1.1 / date.php @ 41cc1b08

1
<?php
2

    
3
class SimplePie_First_Item_Date_Test_Atom_03_DC_11_Date extends SimplePie_First_Item_Date_Test
4
{
5
        function data()
6
        {
7
                $this->data = 
8
'<feed version="0.3" xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
9
        <entry>
10
                <dc:date>2007-01-11T16:00:00Z</dc:date>
11
        </entry>
12
</feed>';
13
        }
14
        
15
        function expected()
16
        {
17
                $this->expected = 1168531200;
18
        }
19
}
20

    
21
?>