5f2e364e49
git-svn-id: file:///home/shish/svn/shimmie2/trunk@1094 7f39781d-f577-437e-ae19-be835c7a54ca
9 lines
235 B
PHP
9 lines
235 B
PHP
<?php
|
|
class RSSImagesTest extends WebTestCase {
|
|
function testImageFeed() {
|
|
$this->get('http://shimmie.shishnet.org/v2/rss/images');
|
|
$this->assertMime("application/rss+xml");
|
|
$this->assertNoText("Exception");
|
|
}
|
|
}
|
|
?>
|