/ tests / all.py
all.py
 1  import unittest
 2  
 3  from .hashes import TestSHA256
 4  from .hashes import TestSHA512
 5  from .identity import TestIdentity
 6  from .link import TestLink
 7  from .channel import TestChannel
 8  
 9  if __name__ == '__main__':
10      unittest.main(verbosity=2)