2008-10-18 10:00:34 +00:00
|
|
|
<?php
|
2009-07-15 02:42:18 +01:00
|
|
|
class RSSCommentsTest extends ShimmieWebTestCase {
|
2008-10-18 10:00:34 +00:00
|
|
|
function testImageFeed() {
|
2009-07-15 02:42:18 +01:00
|
|
|
$this->get_page('rss/comments');
|
2008-10-18 10:00:34 +00:00
|
|
|
$this->assertMime("application/rss+xml");
|
|
|
|
$this->assertNoText("Exception");
|
2009-07-20 06:51:36 +01:00
|
|
|
|
|
|
|
# FIXME: test that there are some comments here
|
2008-10-18 10:00:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|