Tamarin/test/package_test.py

17 lines
397 B
Python
Raw Normal View History

2017-02-11 11:51:01 +01:00
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):
2017-02-16 10:03:38 +01:00
"""TODO"""
2017-02-11 11:51:01 +01:00
if __name__ == '__main__':
unittest.main()