Files
mongo/jstests/map1.js
Eliot Horowitz d5122c9b90 change Map to use Map.get Map.put Map[] won't work
more tests for group
2009-06-08 10:54:55 -04:00

24 lines
542 B
JavaScript

function basic1( key , lookup , shouldFail){
var m = new Map();
m.put( key , 17 );
var out = m.get( lookup || key );
if ( ! shouldFail ){
assert.eq( 17 , out , "basic1 missing: " + tojson( key ) );
}
else {
assert.isnull( out , "basic1 not missing: " + tojson( key ) );
}
}
basic1( 6 )
basic1( "eliot" )
basic1( { a : 1 } );
basic1( { a : 1 , b : 1 } )
basic1( { a : 1 } , { b : 1 } , true )
basic1( { a : 1 , b : 1 } , { b : 1 , a : 1 } , true )
basic1( { a : 1 } , { a : 2 } , true );