This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/contrib/rss_comments/test.php
shish 98f6800f9d configurable testing URL
git-svn-id: file:///home/shish/svn/shimmie2/trunk@1096 7f39781d-f577-437e-ae19-be835c7a54ca
2008-10-18 10:34:15 +00:00

9 lines
219 B
PHP

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