(self, dynamodb_client, scan_table)
| 269 | assert resp["Count"] == 3 |
| 270 | |
| 271 | def test_scan_limit(self, dynamodb_client, scan_table): |
| 272 | resp = dynamodb_client.scan(TableName=scan_table, Limit=5) |
| 273 | assert resp["Count"] == 5 |
| 274 | assert "LastEvaluatedKey" in resp |
| 275 | |
| 276 | def test_scan_pagination(self, dynamodb_client, scan_table): |
| 277 | all_items: list = [] |