diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-09-20 10:08:49 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-09-20 10:08:49 -0700 |
commit | 74d83f2c74738971ea103e7524dd57316b15046c (patch) | |
tree | 25610caae357662c25d8055296d18baea97c5f08 /tests | |
parent | d563ba28291fa1f966353c5ef7e4c32680aa93e8 (diff) | |
parent | 84995f99a9528b84bd1666060c832ca673641a53 (diff) |
Merge branch 'master' into switch-to-cryptography
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_util.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test_util.py b/tests/test_util.py index 35e15765..f961fbbc 100644 --- a/tests/test_util.py +++ b/tests/test_util.py @@ -349,6 +349,11 @@ IdentityFile something_%l_using_fqdn config.parse(config_file) self.assertEqual(config.lookup("abcqwerty")["hostname"], "127.0.0.1") + def test_14_get_hostnames(self): + f = StringIO(test_config_file) + config = paramiko.util.parse_ssh_config(f) + self.assertEqual(config.get_hostnames(), set(['*', '*.example.com', 'spoo.example.com'])) + def test_quoted_host_names(self): test_config_file = """\ Host "param pam" param "pam" |