Files
mongo/jstests/core/error5.js

9 lines
164 B
JavaScript
Raw Normal View History

t = db.error5
t.drop();
2011-01-21 09:01:24 -05:00
assert.throws( function(){ t.save( 4 ); printjson( t.findOne() ) } , null , "A" );
t.save( { a : 1 } )
assert.eq( 1 , t.count() , "B" );