17 lines
397 B
Python
17 lines
397 B
Python
import unittest, os
|
|
from importlib.machinery import SourceFileLoader
|
|
|
|
package = SourceFileLoader('package', os.path.dirname(__file__) + '/../package').load_module()
|
|
|
|
class TestPackage(unittest.TestCase):
|
|
|
|
def test_args_parser(self):
|
|
parser = package.create_args_parser()
|
|
|
|
def test_download_and_extract_rkt(self):
|
|
"""TODO"""
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|