funga-eth

Ethereum implementation of the funga keystore and signer
Info | Log | Files | Refs | README | LICENSE

test_socket.py (268B)


      1 # standard imports
      2 import unittest
      3 import logging
      4 
      5 logg = logging.getLogger(__name__)
      6 
      7 
      8 class SocketTest(unittest.TestCase):
      9 
     10     def test_placeholder_warning(self):
     11         logg.warning('socket tests are missing! :/')
     12 
     13 
     14 if __name__ == '__main__':
     15     unittest.main()