Add more tests for task count of container instance

This commit is contained in:
Tom Elliff 2017-10-13 09:37:39 +01:00
parent 51afd54229
commit a6c38913a7

View File

@ -714,6 +714,9 @@ def test_describe_container_instances():
for ci in response['containerInstances']]
for arn in test_instance_arns:
response_arns.should.contain(arn)
for instance in response['containerInstances']:
instance.keys().should.contain('runningTasksCount')
instance.keys().should.contain('pendingTasksCount')
@mock_ec2