Ticket #1565: in_bulk-empty-list-test.diff
File in_bulk-empty-list-test.diff, 500 bytes (added by , 19 years ago) |
---|
-
tests/modeltests/lookup/models.py
67 67 >>> Article.objects.in_bulk([1000]) 68 68 {} 69 69 >>> Article.objects.in_bulk([]) 70 Traceback (most recent call last): 71 ... 72 AssertionError: in_bulk() cannot be passed an empty ID list. 70 {} 73 71 >>> Article.objects.in_bulk('foo') 74 72 Traceback (most recent call last): 75 73 ...