mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-02-18 14:40:51 +01:00
Made it depend on sqlite.
This commit is contained in:
parent
6584790a4d
commit
e65a7ec17c
@ -31,7 +31,13 @@
|
||||
|
||||
from testsupport import *
|
||||
|
||||
class InfobotTestCase(PluginTestCase):
|
||||
try:
|
||||
import sqlite
|
||||
except ImportError:
|
||||
sqlite = None
|
||||
|
||||
if sqlite is not None:
|
||||
class InfobotTestCase(PluginTestCase):
|
||||
plugins = ('Infobot',)
|
||||
def testIsSnarf(self):
|
||||
self.assertNoResponse('foo is at http://bar.com/', 2)
|
||||
|
Loading…
x
Reference in New Issue
Block a user