From b37e9e859fff145b50cd4e883ebcd95273cf6bfd Mon Sep 17 00:00:00 2001 From: shish Date: Sat, 18 Oct 2008 11:43:44 +0000 Subject: [PATCH] numbered and searched rss results git-svn-id: file:///home/shish/svn/shimmie2/trunk@1099 7f39781d-f577-437e-ae19-be835c7a54ca --- contrib/rss_images/test.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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"); } } ?>