]> git.mxchange.org Git - friendica.git/blob - simplepie/test/feed_category_label/SPtests/atom/0.3/dc/1.0/subject.php
Add simplepie
[friendica.git] / simplepie / test / feed_category_label / SPtests / atom / 0.3 / dc / 1.0 / subject.php
1 <?php
2
3 class SimplePie_Feed_Category_Label_Test_Atom_03_DC_10_Subject extends SimplePie_Feed_Category_Label_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.0/">
9         <dc:subject>Feed Category</dc:subject>
10 </feed>';
11         }
12         
13         function expected()
14         {
15                 $this->expected = 'Feed Category';
16         }
17 }
18
19 ?>