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