blob: ca4d28cc7b97be9fda289ab438b4a3d354ca6ad8 (
plain) (
tree)
|
|
<?php
class RSS_Profile_Title_5 extends SimplePie_Feed_Title_Test
{
function data()
{
$this->data =
'<rss version="2.0">
<channel>
<title>A < B</title>
</channel>
</rss>';
}
function expected()
{
$this->expected = 'A < B';
}
}
?>
|