dir/simplepie/test/feed_copyright/SPtests/atom/1.0/rights.php
Mike Macgirvin 9f7ae0e95f Add simplepie
2010-07-05 03:34:42 -07:00

19 lines
No EOL
327 B
PHP

<?php
class SimplePie_Feed_Copyright_Test_Atom_10_Rights extends SimplePie_Feed_Copyright_Test
{
function data()
{
$this->data =
'<feed xmlns="http://www.w3.org/2005/Atom">
<rights>Example Copyright Information</rights>
</feed>';
}
function expected()
{
$this->expected = 'Example Copyright Information';
}
}
?>