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

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