1
0
forked from arti/doors
doors/kdoorweb/tests/test_db.py

13 lines
208 B
Python
Raw Normal View History

2020-10-08 16:47:53 +00:00
import unittest
from kdoorweb.db import DB
class TestDB(unittest.TestCase):
def test_create_db_in_memory(self):
DB.create_db(dbfile=":memory:")
if __name__ == '__main__':
unittest.main()