Made it depend on sqlite.

This commit is contained in:
Jeremy Fincher 2004-04-11 23:57:03 +00:00
parent 6584790a4d
commit e65a7ec17c
1 changed files with 25 additions and 19 deletions

View File

@ -31,6 +31,12 @@
from testsupport import *
try:
import sqlite
except ImportError:
sqlite = None
if sqlite is not None:
class InfobotTestCase(PluginTestCase):
plugins = ('Infobot',)
def testIsSnarf(self):