Implemented core endpoints of ELBv2
This commit is contained in:
parent
2b76d07558
commit
04e623ea14
9 changed files with 1546 additions and 0 deletions
17
tests/test_elbv2/test_server.py
Normal file
17
tests/test_elbv2/test_server.py
Normal 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')
|
||||
Loading…
Add table
Add a link
Reference in a new issue