mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-27 05:09:23 +01:00
Added test for searchfactoids.
This commit is contained in:
parent
85fad59aaf
commit
0c77571ce8
@ -66,6 +66,17 @@ class FactoidsTestCase(ChannelPluginTestCase):
|
|||||||
self.assertRegexp('learn foo bar baz', '^learn') # No 'as'
|
self.assertRegexp('learn foo bar baz', '^learn') # No 'as'
|
||||||
self.assertRegexp('learn foo bar', '^learn') # No 'as'
|
self.assertRegexp('learn foo bar', '^learn') # No 'as'
|
||||||
|
|
||||||
|
def testSearchFactoids(self):
|
||||||
|
self.assertNotError('learn jemfinch as my primary author')
|
||||||
|
self.assertNotError('learn strike as another cool guy working on me')
|
||||||
|
self.assertNotError('learn inkedmn as another of my developers')
|
||||||
|
self.assertNotError('learn jamessan as a developer of much python')
|
||||||
|
self.assertNotError('learn bwp as the author of my weather command')
|
||||||
|
self.assertRegexp('searchfactoids /.w./', 'bwp')
|
||||||
|
self.assertRegexp('searchfactoids /^.+i/', 'jemfinch.*strike')
|
||||||
|
self.assertNotRegexp('searchfactoids /^.+i/', 'inkedmn')
|
||||||
|
self.assertRegexp('searchfactoids /^j/', 'jemfinch.*jamessan')
|
||||||
|
|
||||||
|
|
||||||
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user