diff options
author | Randolph Tan <randolph@10gen.com> | 2014-01-14 14:09:42 -0500 |
---|---|---|
committer | Randolph Tan <randolph@10gen.com> | 2014-02-28 16:26:33 -0500 |
commit | 5595b945603b0712c537787e31e6da661c424fee (patch) | |
tree | 90945ee3fe4931032f3af2d397bb755fbf5d30ef /jstests/core/date1.js | |
parent | cd62080dcb036e83f8fca6d68d9bcab67bf7a21c (diff) | |
download | mongo-5595b945603b0712c537787e31e6da661c424fee.tar.gz |
SERVER-12127 migrate js tests to jscore suite when not related to writes
Moved test jstest/[a-i].js -> jstests/core/ and made changes to comply with write command api
Diffstat (limited to 'jstests/core/date1.js')
-rw-r--r-- | jstests/core/date1.js | 17 |
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") + |