10 lines
173 B
Python
Executable file
10 lines
173 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
"""
|
|
test/modtest.py: Unit tests for the MMGen suite
|
|
"""
|
|
|
|
try:
|
|
from include import unit_test
|
|
except ImportError:
|
|
from test.include import unit_test
|