mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 01:21:03 +01:00
8 lines
107 B
JavaScript
8 lines
107 B
JavaScript
|
|
t = db.basicb;
|
|
t.drop();
|
|
|
|
assert.throws( "t.insert( { '$a' : 5 } );" );
|
|
t.insert( { '$a' : 5 } , true );
|
|
|