add Arn to cognito user pool model and response
This commit is contained in:
parent
2599516d80
commit
92fc39d7bb
2 changed files with 10 additions and 0 deletions
|
|
@ -27,6 +27,11 @@ def test_create_user_pool():
|
|||
|
||||
result["UserPool"]["Id"].should_not.be.none
|
||||
result["UserPool"]["Id"].should.match(r"[\w-]+_[0-9a-zA-Z]+")
|
||||
result["UserPool"]["Arn"].should.equal(
|
||||
"arn:aws:cognito-idp:us-west-2:{}:userpool/{}".format(
|
||||
ACCOUNT_ID, result["UserPool"]["Id"]
|
||||
)
|
||||
)
|
||||
result["UserPool"]["Name"].should.equal(name)
|
||||
result["UserPool"]["LambdaConfig"]["PreSignUp"].should.equal(value)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue