20 lines
409 B
Python
20 lines
409 B
Python
from pprint import pprint
|
|
from pathlib import Path
|
|
|
|
import unittest
|
|
|
|
import sys
|
|
import io
|
|
sys.path.append('../')
|
|
|
|
from ChaChaIPToCountryDaemon import *
|
|
|
|
|
|
class Test_ChaChaIPToCountryDaemon_base(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
[f.unlink() for f in Path("tmp").glob("*")]
|
|
print("======================")
|
|
|
|
def test_simplerun(self):
|
|
tmp = ChaChaIPToCountryDaemon() |