SQLite backend

darcs-hash:20060129173720-86b55-cb365b2e6e6c652e885d88594e0e5c36deebf364.gz
This commit is contained in:
David Rousselie
2006-01-29 18:37:20 +01:00
parent 06fd569537
commit 7d78e0d892
5 changed files with 188 additions and 88 deletions

View File

@@ -54,6 +54,8 @@ if __name__ == '__main__':
"test")
dbmstorage_suite = unittest.makeSuite(DBMStorage_TestCase, \
"test")
sqlitestorage_suite = unittest.makeSuite(SQLiteStorage_TestCase, \
"test")
jmc_suite = unittest.TestSuite((mail_connection_suite, \
pop3_connection_suite, \
@@ -62,8 +64,9 @@ if __name__ == '__main__':
component_suite, \
component2_suite, \
storage_suite, \
dbmstorage_suite))
test_support.run_suite(mc_factory_suite)
dbmstorage_suite, \
sqlitestorage_suite))
test_support.run_suite(sqlitestorage_suite)
# coverage.stop()
# coverage.analysis(jabber.mailconnection_factory)