Started books per page algorithm, updated some tests

This commit is contained in:
Mike
2019-11-07 00:38:08 -05:00
parent 8a39fb5aa8
commit 8e61105cbb
9 changed files with 51 additions and 11 deletions

View File

@@ -1,6 +1,8 @@
import unittest
# sys.path.insert(1, '../')
from lib.library import Catalogue
Catalogue = Catalogue()
@@ -12,9 +14,6 @@ class LibraryTest(unittest.TestCase):
def test_library_catalogue_filter_books(self):
self.assertIsNotNone(Catalogue.filter_books())
def test_library_catalogue_new_files(self):
self.assertIsNot(Catalogue.new_files(), False)
if __name__ == '__main__':
unittest.main()