-
Notifications
You must be signed in to change notification settings - Fork 901
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resync CRUD tests to use transactions test format (#459)
- Loading branch information
Divjot Arora
committed
Jul 29, 2020
1 parent
7872942
commit ff5ea94
Showing
46 changed files
with
1,921 additions
and
167 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"data": [], | ||
"tests": [ | ||
{ | ||
"description": "Estimated document count with empty collection", | ||
"operation": { | ||
"name": "estimatedDocumentCount", | ||
"arguments": {} | ||
}, | ||
"outcome": { | ||
"result": 0 | ||
} | ||
}, | ||
{ | ||
"description": "Count documents with empty collection", | ||
"operation": { | ||
"name": "countDocuments", | ||
"arguments": { | ||
"filter": {} | ||
} | ||
}, | ||
"outcome": { | ||
"result": 0 | ||
} | ||
}, | ||
{ | ||
"description": "Deprecated count with empty collection", | ||
"operation": { | ||
"name": "count", | ||
"arguments": { | ||
"filter": {} | ||
} | ||
}, | ||
"outcome": { | ||
"result": 0 | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
data: [] | ||
|
||
tests: | ||
- | ||
description: "Estimated document count with empty collection" | ||
operation: | ||
name: estimatedDocumentCount | ||
arguments: { } | ||
|
||
outcome: | ||
result: 0 | ||
- | ||
description: "Count documents with empty collection" | ||
operation: | ||
name: countDocuments | ||
arguments: | ||
filter: { } | ||
|
||
outcome: | ||
result: 0 | ||
- | ||
description: "Deprecated count with empty collection" | ||
operation: | ||
name: count | ||
arguments: | ||
filter: { } | ||
|
||
outcome: | ||
result: 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.