0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 09:06:21 +01:00

rename test colls to work in parallel mode

This commit is contained in:
Aaron 2010-03-29 09:36:16 -07:00
parent 45f8d675d3
commit 71e1d3442c

View File

@ -1,19 +1,19 @@
// to run:
// ./mongo jstests/ref.js
// ./mongo jstests/ref3.js
db.otherthings.drop();
db.things.drop();
db.otherthings3.drop();
db.things3.drop();
var other = { s : "other thing", n : 1};
db.otherthings.save(other);
db.otherthings3.save(other);
db.things.save( { name : "abc" } );
x = db.things.findOne();
x.o = new DBRef( "otherthings" , other._id );
db.things.save(x);
db.things3.save( { name : "abc" } );
x = db.things3.findOne();
x.o = new DBRef( "otherthings3" , other._id );
db.things3.save(x);
assert( db.things.findOne().o.fetch().n == 1, "dbref broken 2" );
assert( db.things3.findOne().o.fetch().n == 1, "dbref broken 2" );
other.n++;
db.otherthings.save(other);
assert( db.things.findOne().o.fetch().n == 2, "dbrefs broken" );
db.otherthings3.save(other);
assert( db.things3.findOne().o.fetch().n == 2, "dbrefs broken" );