Implemented core endpoints of ELBv2

This commit is contained in:
Jack Danger 2017-07-20 15:00:30 -07:00
commit 04e623ea14
9 changed files with 1546 additions and 0 deletions

View file

@ -0,0 +1,17 @@
from __future__ import unicode_literals
import sure # noqa
import moto.server as server
'''
Test the different server responses
'''
def test_elb_describe_instances():
backend = server.create_backend_app("elbv2")
test_client = backend.test_client()
res = test_client.get('/?Action=DescribeLoadBalancers')
res.data.should.contain(b'DescribeLoadBalancersResponse')