Reticulum/tests/all.py

10 lines
232 B
Python
Raw Normal View History

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