Prepare script works.

This commit is contained in:
tecnovert
2019-07-21 20:50:32 +02:00
parent 76af4a941e
commit ecfd783cce
8 changed files with 500 additions and 305 deletions

View File

@@ -12,13 +12,14 @@ from unittest.mock import patch
from io import StringIO
import logging
import shutil
import importlib
prepareSystem = importlib.import_module('bin.basicswap-prepare')
import bin.basicswap_prepare as prepareSystem
test_path = os.path.expanduser('~/test_basicswap')
logger = logging.getLogger()
logger.level = logging.DEBUG
if not len(logger.handlers):
logger.addHandler(logging.StreamHandler(sys.stdout))
class Test(unittest.TestCase):