slightly improved network functionality and added tests for network

This commit is contained in:
UpstreamData
2022-05-19 11:55:38 -06:00
parent 40f14876cc
commit ec5563f2f0
3 changed files with 100 additions and 17 deletions

9
tests/__init__.py Normal file
View File

@@ -0,0 +1,9 @@
from tests.network_tests import test_network
def test_all():
test_network()
if __name__ == "__main__":
test_all()