10 lines
191 B
Python
10 lines
191 B
Python
|
|
#!/usr/bin/env python3
|
||
|
|
|
||
|
|
"""
|
||
|
|
test/daemontest.py: Daemon-related unit tests for the MMGen suite
|
||
|
|
"""
|
||
|
|
|
||
|
|
try:
|
||
|
|
from include import unit_test
|
||
|
|
except ImportError:
|
||
|
|
from test.include import unit_test
|