weather: handle bad locations better

This commit is contained in:
mutantmonkey
2012-06-29 20:52:07 -07:00
parent 52aaa0778a
commit 0ba6438922
2 changed files with 23 additions and 1 deletions

View File

@@ -26,10 +26,28 @@ class TestWeather(unittest.TestCase):
self.assertEqual(icao, 'KIAD')
def test_location(self):
def test_airport(self):
input = Mock(
match=Mock(group=lambda x: 'KIAD'),
sender='#phenny', nick='phenny_test')
f_weather(self.phenny, input)
assert self.phenny.msg.called is True
def test_place(self):
input = Mock(
match=Mock(group=lambda x: 'Blacksburg'),
sender='#phenny', nick='phenny_test')
f_weather(self.phenny, input)
assert self.phenny.msg.called is True
def test_notfound(self):
input = Mock(
match=Mock(group=lambda x: 'Hell'),
sender='#phenny', nick='phenny_test')
f_weather(self.phenny, input)
self.phenny.msg.called_once_with('#phenny',
"No NOAA data available for that location.")