]> git.mxchange.org Git - friendica.git/blob - simplepie/test/first_item_date/SPtests/rss/0.91-userland/atom/1.0/published.php
Add simplepie
[friendica.git] / simplepie / test / first_item_date / SPtests / rss / 0.91-userland / atom / 1.0 / published.php
1 <?php
2
3 class SimplePie_First_Item_Date_Test_RSS_091_Userland_Atom_10_Published extends SimplePie_First_Item_Date_Test
4 {
5         function data()
6         {
7                 $this->data = 
8 '<rss version="0.91" xmlns:a="http://www.w3.org/2005/Atom">
9         <channel>
10                 <item>
11                         <a:published>2007-01-11T16:00:00Z</a:published>
12                 </item>
13         </channel>
14 </rss>';
15         }
16         
17         function expected()
18         {
19                 $this->expected = 1168531200;
20         }
21 }
22
23 ?>