Add pharos-validator tool
[pharos.git] / tools / pharos-validator / src / validation_tool / tests / test_server.py
1 #!/usr/bin/env python3
2
3 def test_ssh_thread():
4     """Test to see if ssh connections are attempted the proper amount of times"""
5     from pharosvalidator.server import ssh_thread
6     ssh_thread("127.0.0.1", "0.0.0.0", "1", 10)
7
8
9