Initial commit

This commit is contained in:
nolash
2021-10-10 18:14:34 +02:00
commit 7753247afb
34 changed files with 1859 additions and 0 deletions

15
tests/test_socket.py Normal file
View File

@@ -0,0 +1,15 @@
# standard imports
import unittest
import logging
logg = logging.getLogger(__name__)
class SocketTest(unittest.TestCase):
def test_placeholder_warning(self):
logg.warning('socket tests are missing! :/')
if __name__ == '__main__':
unittest.main()