mongo-debian/jstests/error5.js
2011-03-17 00:05:43 +01:00

8 lines
164 B
JavaScript

t = db.error5
t.drop();
assert.throws( function(){ t.save( 4 ); printjson( t.findOne() ) } , null , "A" );
t.save( { a : 1 } )
assert.eq( 1 , t.count() , "B" );