moto/tests/test_ses/test_server.py

15 lines
308 B
Python
Raw Normal View History

2013-08-03 21:21:25 +00:00
import sure # noqa
2013-03-05 13:14:43 +00:00
import moto.server as server
'''
Test the different server responses
'''
server.configure_urls("ses")
def test_ses_list_identities():
test_client = server.app.test_client()
res = test_client.get('/?Action=ListIdentities')
res.data.should.contain("ListIdentitiesResponse")