From 288c281343dffc4ad0b65005832903167e487b45 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Thu, 20 Nov 2003 12:19:05 +0000 Subject: [PATCH] Added tests for the weather errors-that-shouldn't-be-errors. --- test/test_Http.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/test_Http.py b/test/test_Http.py index 09aaed7fd..250e6f367 100644 --- a/test/test_Http.py +++ b/test/test_Http.py @@ -77,6 +77,10 @@ class HttpTest(PluginTestCase, PluginDocumentation): self.assertNotError('weather 43221') self.assertNotRegexp('weather Paris, FR', 'Virginia') self.assertError('weather alsdkfjasdl, asdlfkjsadlfkj') + self.assertNotError('weather London, uk') + self.assertNotError('weather London, UK') + self.assertNotError('weather Munich, de') + self.assertNotError('weather Tucson, AZ') def testKernel(self): self.assertNotError('kernel')