Files
mongo/jstests/core/updateg.js
Siyuan Zhou 3660343e0b SERVER-12127 migrate js tests to jscore suite when not related to writes
Migrate js tests starting from j-z.
Include SERVER-12920 Update use_power_of_2.js

Signed-off-by: Matt Kangas <matt.kangas@mongodb.com>
2014-03-03 22:54:10 -05:00

18 lines
585 B
JavaScript

// SERVER-3370 check modifiers with field name characters comparing less than '.' character.
t = db.jstests_updateg;
t.drop();
t.update({}, { '$inc' : { 'all.t' : 1, 'all-copy.t' : 1 }}, true);
assert.eq( 1, t.count( {all:{t:1},'all-copy':{t:1}} ) );
t.drop();
t.save({ 'all' : {}, 'all-copy' : {}});
t.update({}, { '$inc' : { 'all.t' : 1, 'all-copy.t' : 1 }});
assert.eq( 1, t.count( {all:{t:1},'all-copy':{t:1}} ) );
t.drop();
t.save({ 'all11' : {}, 'all2' : {}});
t.update({}, { '$inc' : { 'all11.t' : 1, 'all2.t' : 1 }});
assert.eq( 1, t.count( {all11:{t:1},'all2':{t:1}} ) );