summaryrefslogtreecommitdiff
path: root/jstests/core/ne3.js
blob: 5c38858c019ddffb783eb5edfc5f38565bf499a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// don't allow most operators with regex

t = db.jstests_ne3;
t.drop();

assert.throws(function() {
    t.findOne({t: {$ne: /a/}});
});
assert.throws(function() {
    t.findOne({t: {$gt: /a/}});
});
assert.throws(function() {
    t.findOne({t: {$gte: /a/}});
});
assert.throws(function() {
    t.findOne({t: {$lt: /a/}});
});
assert.throws(function() {
    t.findOne({t: {$lte: /a/}});
});

assert.eq(0, t.count({t: {$in: [/a/]}}));