Files
pyShelf/tests/test_library.py

19 lines
466 B
Python
Executable File

import unittest
from library import Catalogue
class Testing(unittest.TestCase):
def test_libray_catalogue(self):
self.assertIsNotNone(Catalogue())
def test_library_catalogue_scan_folder(self):
self.assertIsInstance(Catalogue().scan_folder(), object)
def test_library_catalogue_compare_shelf_current(self):
self.assertIsInstance(Catalogue().compare_shelf_current(), Catalogue)
if __name__ == '__main__':
unittest.main()