Reticulum/tests/all.py

10 lines
232 B
Python
Raw Normal View History

2022-06-08 14:27:26 -06:00
import unittest
2022-06-08 15:28:55 -06:00
from .hashes import TestSHA256
from .hashes import TestSHA512
from .identity import TestIdentity
2022-06-09 05:32:32 -06:00
from .link import TestLink
from .channel import TestChannel
2022-06-08 14:27:26 -06:00
if __name__ == '__main__':
unittest.main(verbosity=2)