mirror of
https://github.com/jlu5/SupyPlugins.git
synced 2025-04-29 15:01:07 -05:00
19 lines
357 B
Python
19 lines
357 B
Python
###
|
|
# Copyright (c) 2012-2014, spline
|
|
# All rights reserved.
|
|
#
|
|
#
|
|
###
|
|
|
|
from supybot.test import *
|
|
from supybot.utils import stripFormatting
|
|
|
|
class WeatherTestCase(PluginTestCase):
|
|
plugins = ('Weather',)
|
|
|
|
def testWeather(self):
|
|
self.assertRegexp('wunderground 10002', 'New York, NY')
|
|
|
|
|
|
# vim:set shiftwidth=4 tabstop=4 expandtab textwidth=79:
|