]> git.mxchange.org Git - friendica.git/blob - simplepie/test/feed_copyright/SPtests/rss/0.91-userland/dc/1.1/rights.php
aaa13264b5b932e78d3ed785eaafa8d0f854ce5c
[friendica.git] / simplepie / test / feed_copyright / SPtests / rss / 0.91-userland / dc / 1.1 / rights.php
1 <?php
2
3 class SimplePie_Feed_Copyright_Test_RSS_091_Userland_DC_11_Rights extends SimplePie_Feed_Copyright_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                 <dc:rights>Example Copyright Information</dc:rights>
11         </channel>
12 </rss>';
13         }
14         
15         function expected()
16         {
17                 $this->expected = 'Example Copyright Information';
18         }
19 }
20
21 ?>