basic emr done
This commit is contained in:
parent
02fa630a3c
commit
cea25e75c5
8 changed files with 634 additions and 0 deletions
16
tests/test_emr/test_server.py
Normal file
16
tests/test_emr/test_server.py
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
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>')
|
||||
Loading…
Add table
Add a link
Reference in a new issue