MINOR: missed this when updating tests

This commit is contained in:
Mike Dirolf 2009-08-18 11:53:35 -04:00
parent 7b4e51e825
commit 2ef660986d
1 changed files with 3 additions and 3 deletions

View File

@ -13,6 +13,6 @@ end
puts db.collection('test1').count
puts db.collection('test2').count
puts db.collection('test3').count('i' => 'a')
puts db.collection('test3').count('i' => 3)
puts db.collection('test3').count({'i' => {'$gte' => 67}})
puts db.collection('test3').find('i' => 'a').count
puts db.collection('test3').find('i' => 3).count
puts db.collection('test3').find({'i' => {'$gte' => 67}}).count