Added a test for empty [].

This commit is contained in:
Jeremy Fincher 2003-09-05 08:37:06 +00:00
parent 3be6255745
commit d02b4253a4

View File

@ -117,4 +117,9 @@ class FunctionsTestCase(unittest.TestCase):
'%s: foo' % channelMsg.nick),
callbacks.reply(channelMsg, 'foo'))
class PrivmsgTestCase(PluginTestCase):
plugins = ('Utilities',)
def testEmptySquareBrackets(self):
self.assertResponse('echo []', '[]')
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78: