blob: e7635c9af5c3a75aa6c31a67be793a4e984c2f72 (
plain) (
tree)
|
|
<?php
class RSS_Profile_Title_2 extends SimplePie_Feed_Title_Test
{
function data()
{
$this->data =
'<rss version="2.0">
<channel>
<title>Bill & Ted\'s Excellent Adventure</title>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'Bill & Ted\'s Excellent Adventure';
}
}
?>
|