summaryrefslogtreecommitdiffstats
path: root/validator/src/validation_tool/tests/test_server.py
diff options
context:
space:
mode:
Diffstat (limited to 'validator/src/validation_tool/tests/test_server.py')
-rw-r--r--validator/src/validation_tool/tests/test_server.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/validator/src/validation_tool/tests/test_server.py b/validator/src/validation_tool/tests/test_server.py
new file mode 100644
index 0000000..35388b6
--- /dev/null
+++ b/validator/src/validation_tool/tests/test_server.py
@@ -0,0 +1,9 @@
+#!/usr/bin/env python3
+
+def test_ssh_thread():
+ """Test to see if ssh connections are attempted the proper amount of times"""
+ from pharosvalidator.server import ssh_thread
+ ssh_thread("127.0.0.1", "0.0.0.0", "1", 10)
+
+
+