]> git.mxchange.org Git - friendica.git/blob - simplepie/test/feed_copyright/SPtests/atom/1.0/dc/1.0/rights.php
Add simplepie
[friendica.git] / simplepie / test / feed_copyright / SPtests / atom / 1.0 / dc / 1.0 / rights.php
1 <?php
2
3 class SimplePie_Feed_Copyright_Test_Atom_10_DC_10 extends SimplePie_Feed_Copyright_Test
4 {
5         function data()
6         {
7                 $this->data = 
8 '<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.0/">
9         <dc:rights>Example Copyright Information</dc:rights>
10 </feed>';
11         }
12         
13         function expected()
14         {
15                 $this->expected = 'Example Copyright Information';
16         }
17 }
18
19 ?>