Add deployments to the ecs services (describe_services)
This commit is contained in:
parent
34c711189f
commit
0ae6e404d0
2 changed files with 27 additions and 1 deletions
|
|
@ -402,6 +402,11 @@ def test_describe_services():
|
|||
'arn:aws:ecs:us-east-1:012345678910:service/test_ecs_service2')
|
||||
response['services'][1]['serviceName'].should.equal('test_ecs_service2')
|
||||
|
||||
response['services'][0]['deployments'][0]['desiredCount'].should.equal(2)
|
||||
response['services'][0]['deployments'][0]['pendingCount'].should.equal(2)
|
||||
response['services'][0]['deployments'][0]['runningCount'].should.equal(0)
|
||||
response['services'][0]['deployments'][0]['status'].should.equal('PRIMARY')
|
||||
|
||||
|
||||
@mock_ecs
|
||||
def test_update_service():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue