Explicit test for unsupported cursor with a single skip

This commit is contained in:
Slava Kim
2014-02-24 12:10:15 -08:00
parent 3355ba7e85
commit 6ad69c52ae

View File

@@ -43,4 +43,5 @@ Tinytest.add("mongo-livedata - oplog - cursorSupported", function (test) {
supported(true, {}, { sort: {x:1}, limit: 5 });
supported(false, {}, { limit: 5 });
supported(false, {}, { skip: 2, limit: 5 });
supported(false, {}, { skip: 2 });
});