Files
mongo/jstests/error5.js
Eliot Horowitz f63206fed4 more test fixing
2011-01-21 09:01:24 -05:00

9 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" );