2008-10-18 10:00:34 +00:00
|
|
|
<?php
|
|
|
|
class RSSCommentsTest extends WebTestCase {
|
|
|
|
function testImageFeed() {
|
2008-10-18 10:34:15 +00:00
|
|
|
$this->get(TEST_BASE.'/rss/comments');
|
2008-10-18 10:00:34 +00:00
|
|
|
$this->assertMime("application/rss+xml");
|
|
|
|
$this->assertNoText("Exception");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|