Source code for tests.test_eit

'''
Created on 2020-11-09

@author: wf
'''
import unittest
import os
from eit.eitparser import EitList

[docs]class TestEitParser(unittest.TestCase): ''' test the standalone EIT Parser '''
[docs] def setUp(self): pass
[docs] def tearDown(self): pass
[docs] def testEitParser(self): ''' test the Event Information Table parser ''' home = os.path.expanduser("~") eitdir= home+"/movies/eit" EitList.readeit(eitdir,debug=False) pass
if __name__ == "__main__": #import sys;sys.argv = ['', 'Test.testName'] unittest.main()