]> git.mxchange.org Git - friendica.git/blob - simplepie/test/first_item_category_label/SPtests/rss/0.91-userland/dc/1.1/subject.php
Add simplepie
[friendica.git] / simplepie / test / first_item_category_label / SPtests / rss / 0.91-userland / dc / 1.1 / subject.php
1 <?php
2
3 class SimplePie_First_Item_Category_Label_Test_RSS_091_Userland_DC_11_Subject extends SimplePie_First_Item_Category_Label_Test
4 {
5         function data()
6         {
7                 $this->data = 
8 '<rss version="0.91" xmlns:dc="http://purl.org/dc/elements/1.1/">
9         <channel>
10                 <item>
11                         <dc:subject>Item Category</dc:subject>
12                 </item>
13         </channel>
14 </rss>';
15         }
16         
17         function expected()
18         {
19                 $this->expected = 'Item Category';
20         }
21 }
22
23 ?>