diff --git a/contrib/rss_images/test.php b/contrib/rss_images/test.php index e3af0ffc..ad9b1bac 100644 --- a/contrib/rss_images/test.php +++ b/contrib/rss_images/test.php @@ -4,6 +4,18 @@ class RSSImagesTest extends WebTestCase { $this->get(TEST_BASE.'/rss/images'); $this->assertMime("application/rss+xml"); $this->assertNoText("Exception"); + + $this->get(TEST_BASE.'/rss/images/1'); + $this->assertMime("application/rss+xml"); + $this->assertNoText("Exception"); + + $this->get(TEST_BASE.'/rss/images/tagme/1'); + $this->assertMime("application/rss+xml"); + $this->assertNoText("Exception"); + + $this->get(TEST_BASE.'/rss/images/tagme/2'); + $this->assertMime("application/rss+xml"); + $this->assertNoText("Exception"); } } ?>