Skip to content
This repository has been archived by the owner on May 16, 2021. It is now read-only.

Commit

Permalink
fix: update test data with data
Browse files Browse the repository at this point in the history
  • Loading branch information
mainawycliffe committed Jan 29, 2020
1 parent 7002236 commit 92dd97d
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 3 deletions.
9 changes: 6 additions & 3 deletions testdata/users.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
[{
[
{
"name": "Some name here",
"email": "[email protected]",
"password": "HelloWorld"
}, {
},
{
"name": "Some name here",
"email": "[email protected]",
"password": "HelloWorld"
}]
}
]
32 changes: 32 additions & 0 deletions testdata/users_with_custom_claims.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
[
{
"name": "Some name here",
"email": "[email protected]",
"password": "HelloWorld",
"custom_claims": [
{
"key": "isAdmin",
"valye": "true"
},
{
"key": "isSomethingElse",
"value": "helloworld"
}
]
},
{
"name": "Some name here",
"email": "[email protected]",
"password": "HelloWorld",
"custom_claims": [
{
"key": "isAdmin",
"valye": "true"
},
{
"key": "isSomethingElse",
"value": "helloworld"
}
]
}
]
17 changes: 17 additions & 0 deletions testdata/users_with_custom_claims.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
- name: Some name here
email: [email protected]
password: HelloWorld
custom_claims:
- key: isAdmin
valye: 'true'
- key: isSomethingElse
value: helloworld
- name: Some name here
email: [email protected]
password: HelloWorld
custom_claims:
- key: isAdmin
valye: 'true'
- key: isSomethingElse
value: helloworld

0 comments on commit 92dd97d

Please sign in to comment.