summaryrefslogtreecommitdiff
path: root/jstests/error5.js
blob: ed8d92227eb6fcef0c4a57832891de5dc35e0449 (plain)
1
2
3
4
5
6
7
8

t = db.error5
t.drop();

assert.throws( function(){ t.save( 4 ); } , "A" );
t.save( { a : 1 } )
assert.eq( 1 , t.count() , "B" );