support names in DescribeKeyPairs
This commit is contained in:
parent
72ae98128c
commit
e19967b7d5
3 changed files with 27 additions and 2 deletions
|
|
@ -31,6 +31,9 @@ def test_key_pairs_create_two():
|
|||
assert len(kps) == 2
|
||||
assert kps[0].name == 'foo'
|
||||
assert kps[1].name == 'bar'
|
||||
kps = conn.get_all_key_pairs('foo')
|
||||
assert len(kps) == 1
|
||||
assert kps[0].name == 'foo'
|
||||
|
||||
|
||||
@mock_ec2
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue