def test_localhost(self): self.assertEqual(check_connectivity("http://127.0.0.1:9001"), True)
def test_personal_dn(self): self.assertEqual(check_connectivity("http://www.dkroell.com"), True)
def test_false_dn(self): self.assertEqual(check_connectivity("http://128.144"), False)