0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 01:21:03 +01:00
mongodb/jstests/ne3.js
2010-08-30 20:11:00 -07:00

12 lines
462 B
JavaScript

// 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/ ] } } ) );