merge
This commit is contained in:
parent
181b5539f6
commit
e51d1bfade
172 changed files with 49629 additions and 49629 deletions
|
|
@ -1,26 +1,26 @@
|
|||
from __future__ import unicode_literals
|
||||
|
||||
import json
|
||||
|
||||
import re
|
||||
import sure # noqa
|
||||
|
||||
import moto.server as server
|
||||
|
||||
'''
|
||||
Test the different server responses
|
||||
'''
|
||||
|
||||
|
||||
def test_iam_server_get():
|
||||
backend = server.create_backend_app("iam")
|
||||
test_client = backend.test_client()
|
||||
|
||||
group_data = test_client.action_data(
|
||||
"CreateGroup", GroupName="test group", Path="/")
|
||||
group_id = re.search("<GroupId>(.*)</GroupId>", group_data).groups()[0]
|
||||
|
||||
groups_data = test_client.action_data("ListGroups")
|
||||
groups_ids = re.findall("<GroupId>(.*)</GroupId>", groups_data)
|
||||
|
||||
assert group_id in groups_ids
|
||||
from __future__ import unicode_literals
|
||||
|
||||
import json
|
||||
|
||||
import re
|
||||
import sure # noqa
|
||||
|
||||
import moto.server as server
|
||||
|
||||
'''
|
||||
Test the different server responses
|
||||
'''
|
||||
|
||||
|
||||
def test_iam_server_get():
|
||||
backend = server.create_backend_app("iam")
|
||||
test_client = backend.test_client()
|
||||
|
||||
group_data = test_client.action_data(
|
||||
"CreateGroup", GroupName="test group", Path="/")
|
||||
group_id = re.search("<GroupId>(.*)</GroupId>", group_data).groups()[0]
|
||||
|
||||
groups_data = test_client.action_data("ListGroups")
|
||||
groups_ids = re.findall("<GroupId>(.*)</GroupId>", groups_data)
|
||||
|
||||
assert group_id in groups_ids
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue