fix for scanning without filter

This commit is contained in:
Steve Pulec 2013-03-15 17:14:14 -04:00
commit a5eaaaad51
3 changed files with 14 additions and 8 deletions

View file

@ -291,6 +291,9 @@ def test_scan():
)
item.put()
results = table.scan()
results.response['Items'].should.have.length_of(3)
results = table.scan(scan_filter={'SentBy': condition.EQ('User B')})
results.response['Items'].should.have.length_of(1)