0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/jstests/date1.js

15 lines
245 B
JavaScript
Raw Normal View History

2009-05-14 16:57:06 +02:00
t = db.date1;
2009-06-01 17:34:11 +02:00
function go( d , msg ){
t.drop();
t.save( { a : 1 , d : d } );
assert.eq( d , t.findOne().d , msg )
}
go( new Date() , "A" )
go( new Date( 1 ) , "B")
go( new Date( 0 ) , "C (old spidermonkey lib fails this test)")
2009-06-01 17:34:11 +02:00