diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2013-09-27 17:30:34 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2013-09-27 17:30:34 -0700 |
commit | cba4c68365fe17dfd6a7cb5146821f7333b07bd1 (patch) | |
tree | 5399f98335abd5a4a31248f9ff7658f32a6d96f3 /tests/test_util.py | |
parent | 5c124cb1362f08296802f8d4856eaa18c0b35b00 (diff) | |
parent | 7243f8fe90097eb3c78db0b31a19104155b9cf89 (diff) |
Merge branch '1.11' into 156-int
Diffstat (limited to 'tests/test_util.py')
-rw-r--r-- | tests/test_util.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/test_util.py b/tests/test_util.py index efda9b2f..a528224e 100644 --- a/tests/test_util.py +++ b/tests/test_util.py @@ -329,3 +329,14 @@ IdentityFile id_dsa22 paramiko.util.lookup_ssh_host_config(host, config), values ) + + def test_12_config_addressfamily_and_lazy_fqdn(self): + """ + Ensure the code path honoring non-'all' AddressFamily doesn't asplode + """ + test_config = """ +AddressFamily inet +IdentityFile something_%l_using_fqdn +""" + config = paramiko.util.parse_ssh_config(cStringIO.StringIO(test_config)) + assert config.lookup('meh') # will die during lookup() if bug regresses |