From 53e88a67c22f5d1023686d05b62f330f6904ee41 Mon Sep 17 00:00:00 2001 From: James Vega Date: Thu, 6 Apr 2006 15:00:53 +0000 Subject: [PATCH] plugins/RSS/test.py: Remove a comment that doesn't apply anymore and add a test for another encoding problem. --- plugins/RSS/test.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/plugins/RSS/test.py b/plugins/RSS/test.py index f72df1abb..c5001b513 100644 --- a/plugins/RSS/test.py +++ b/plugins/RSS/test.py @@ -45,9 +45,6 @@ class RSSTestCase(ChannelPluginTestCase): def testRssinfo(self): self.assertNotError('rss info %s' % url) self.assertNotError('rss add advogato %s' % url) - # For some reason conf.supybot.plugins.RSS.feeds.advogato is - # empty, which is why this test is failing. Works in practice, - # but not here. :( self.assertNotError('rss info advogato') self.assertNotError('rss info AdVogATo') self.assertNotError('rss remove advogato') @@ -78,6 +75,7 @@ class RSSTestCase(ChannelPluginTestCase): def testNonAsciiFeeds(self): self.assertNotError('rss http://www.heise.de/newsticker/heise.rdf') self.assertNotError('rss http://www.golem.de/rss.php?feed=ATOM0.3') + self.assertNotError('rss info http://br-linux.org/main/index.xml') # vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79: