Add tests to verify Model.exists() is working

This commit is contained in:
Maxim Sharai 2019-01-22 16:19:11 +03:00 committed by Miroslav Bajtoš
parent 6caf45d39e
commit 2aff46a79a
No known key found for this signature in database
GPG Key ID: 6F2304BA9361C7E3
1 changed files with 23 additions and 0 deletions

View File

@ -200,6 +200,29 @@ describe('Remote model tests', function() {
});
});
describe('Model.exists(id, callback)', function() {
it('should return true when the model with the given id exists',
function(done) {
ServerModel.create({first: 'max'}, function(err, user) {
if (err) return done(err);
ClientModel.exists(user.id, function(err, exist) {
if (err) return done(err);
assert.equal(exist, true);
done();
});
});
});
it('should return false when there is no model with the given id',
function(done) {
ClientModel.exists('user-id-does-not-exist', function(err, exist) {
if (err) return done(err);
assert.equal(exist, false);
done();
});
});
});
describe('Model.findById(id, callback)', function() {
it('should return null when an instance does not exist',
function(done) {