Added tests for later notes.

This commit is contained in:
Jeremy Fincher 2007-10-23 05:21:34 +00:00 committed by James Vega
parent 1979f5ad35
commit 1bf4f5554f
1 changed files with 8 additions and 0 deletions

View File

@ -35,6 +35,14 @@ class LaterTestCase(PluginTestCase):
self.assertNotError('later tell foo bar')
self.assertNotError('later tell foo baz')
def testLaterRemove(self):
self.assertNotError('later tell foo 1')
self.assertNotError('later tell bar 1')
self.assertRegexp('later notes', 'bar.*foo')
self.assertNotError('later remove bar')
self.assertNotRegexp('later notes', 'bar.*foo')
self.assertRegexp('later notes', 'foo')
# vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79: