(self, dynamodb_client, scan_table)
| 257 | """Scan operation tests.""" |
| 258 | |
| 259 | def test_scan_full_table(self, dynamodb_client, scan_table): |
| 260 | resp = dynamodb_client.scan(TableName=scan_table) |
| 261 | assert resp["Count"] == 13 |
| 262 | |
| 263 | def test_scan_filter_expression(self, dynamodb_client, scan_table): |
| 264 | resp = dynamodb_client.scan( |