Files
zoff/server/node_modules/mongojs/test/test-find-query.js

15 lines
283 B
JavaScript
Executable File

var insert = require('./insert');
insert('find query', [{
hello:'world1'
}, {
hello:'world2'
}], function(db, t, done) {
db.a.find({hello:'world2'}, function(err, docs) {
t.ok(!err);
t.equal(docs.length, 1);
t.equal(docs[0].hello, 'world2');
done();
});
});