moto/tests/test_emr/test_server.py
2013-08-07 20:32:29 -04:00

17 lines
353 B
Python

import sure # noqa
import moto.server as server
'''
Test the different server responses
'''
server.configure_urls("emr")
def test_describe_jobflows():
test_client = server.app.test_client()
res = test_client.get('/?Action=DescribeJobFlows')
res.data.should.contain('<DescribeJobFlowsResult>')
res.data.should.contain('<JobFlows>')