Fix infinite loop in find method

If a _limit is not given, the query limit should
be given by eit
This commit is contained in:
Stefan Wehrmeyer
2014-01-25 21:20:18 +01:00
parent 5a7cafd4e2
commit eff6925af9
2 changed files with 8 additions and 3 deletions
+4
View File
@@ -194,6 +194,10 @@ class TableTestCase(unittest.TestCase):
assert len(ds) == 3, ds
ds = list(self.tbl.find(place=TEST_CITY_1, _limit=2))
assert len(ds) == 2, ds
ds = list(self.tbl.find(place=TEST_CITY_1, _limit=2, _step=1))
assert len(ds) == 2, ds
ds = list(self.tbl.find(place=TEST_CITY_1, _limit=1, _step=2))
assert len(ds) == 1, ds
def test_distinct(self):
x = list(self.tbl.distinct('place'))