summaryrefslogtreecommitdiff
path: root/jstests/core/date1.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/date1.js')
-rw-r--r--jstests/core/date1.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/jstests/core/date1.js b/jstests/core/date1.js
new file mode 100644
index 00000000000..e6fc147f9f4
--- /dev/null
+++ b/jstests/core/date1.js
@@ -0,0 +1,17 @@
+
+t = db.date1;
+
+
+function go( d , msg ){
+ t.drop();
+ t.save({ a: 1, d: d });
+// printjson(d);
+// printjson(t.findOne().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)")
+go(new Date(-10), "neg")
+