Began extracting data from epub files

This commit is contained in:
Mike
2019-10-01 17:30:36 -04:00
parent 81fe90bce5
commit 8e90fc851c
18 changed files with 210 additions and 150 deletions

16
tests/test_storage.py Normal file
View File

@@ -0,0 +1,16 @@
import unittest
import sys
sys.path.insert(1, 'lib/')
from storage import Storage
storage = Storage()
class StorageTest(unittest.TestCase):
def test_Storage_databasee(self):
self.assertTrue(storage.database())
def test_Storage_create_tables(self):
self.assertIsNot(storage.create_tables(), Exception)
if __name__ == '__main__':
unittest.main()