moto/tests/test_elbv2/test_server.py

18 lines
385 B
Python
Raw Normal View History

2017-07-20 22:00:30 +00:00
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')