mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 01:21:03 +01:00
7 lines
108 B
JavaScript
7 lines
108 B
JavaScript
|
|
t = db.objid5;
|
|
t.drop();
|
|
|
|
t.save( { _id : 5.5 } );
|
|
assert.eq( 18 , Object.bsonsize( t.findOne() ) , "A" );
|