]> git.mxchange.org Git - friendica.git/blob - simplepie/test/feed_copyright/SPtests/rss/2.0/copyright.php
273424bf459105531e5b61b61e5f38cae1720d32
[friendica.git] / simplepie / test / feed_copyright / SPtests / rss / 2.0 / copyright.php
1 <?php
2
3 class SimplePie_Feed_Copyright_Test_RSS_20_Copyright extends SimplePie_Feed_Copyright_Test
4 {
5         function data()
6         {
7                 $this->data = 
8 '<rss version="2.0">
9         <channel>
10                 <copyright>Example Copyright Information</copyright>
11         </channel>
12 </rss>';
13         }
14         
15         function expected()
16         {
17                 $this->expected = 'Example Copyright Information';
18         }
19 }
20
21 ?>