MCPcopy Create free account
hub / github.com/ExtendDB/extenddb / test_scan_limit

Method test_scan_limit

tests/test_query_scan.py:271–274  ·  view source on GitHub ↗
(self, dynamodb_client, scan_table)

Source from the content-addressed store, hash-verified

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 = []

Callers

nothing calls this directly

Calls 1

scanMethod · 0.80

Tested by

no test coverage detected