magic-wormhole/src/wormhole/test/test_load.py

9 lines
241 B
Python
Raw Normal View History

import unittest
class Import(unittest.TestCase):
def test_import(self):
import wormhole
self.assertTrue(len(wormhole.__version__))
import wormhole_server
self.assertTrue(len(wormhole_server.__version__))