add a first failing unit test for keypairs

This commit is contained in:
Konstantinos Koukopoulos 2014-02-24 12:08:00 +02:00
parent 6b8241a351
commit 390d3b900c

View File

@ -5,5 +5,6 @@ from moto import mock_ec2
@mock_ec2
def test_key_pairs():
pass
def test_key_pairs_empty():
conn = boto.connect_ec2('the_key', 'the_secret')
assert len(conn.get_all_key_pairs()) == 0