Reticulum/tests/all.py

10 lines
232 B
Python
Raw Permalink Normal View History

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