Method
test_scan_total_without_segment
(self, dynamodb_client, scan_table)
Source from the content-addressed store, hash-verified
| 312 | assert exc_info.value.response["Error"]["Code"] == "ValidationException" |
| 313 | |
| 314 | def test_scan_total_without_segment(self, dynamodb_client, scan_table): |
| 315 | with pytest.raises(ClientError) as exc_info: |
| 316 | dynamodb_client.scan(TableName=scan_table, TotalSegments=3) |
| 317 | assert exc_info.value.response["Error"]["Code"] == "ValidationException" |
| 318 | |
| 319 | |
| 320 | # --------------------------------------------------------------------------- |
Callers
nothing calls this directly
Tested by
no test coverage detected