10 lines
219 B
PHP
Raw Normal View History

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