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

20 lines
355 B
JavaScript

o = new ObjectId();
assert(o.str);
a = new ObjectId(o.str);
assert.eq(o.str, a.str);
assert.eq(a.str, a.str.toString());
b = ObjectId(o.str);
assert.eq(o.str, b.str);
assert.eq(b.str, b.str.toString());
assert.throws(function(z) {
return new ObjectId("a");
});
assert.throws(function(z) {
return new ObjectId("12345678901234567890123z");
});