Merge branch 'wpjunior-fix_update_attributes_error'
This commit is contained in:
commit
cb776b1354
|
@ -606,6 +606,18 @@ describe('manipulation', function () {
|
||||||
.catch(done);
|
.catch(done);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('should raises on connector error', function(done) {
|
||||||
|
var fakeConnector = {
|
||||||
|
updateAttributes: function (model, id, data, options, cb) {
|
||||||
|
cb(new Error('Database Error'));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
person.getConnector = function () { return fakeConnector; };
|
||||||
|
person.updateAttributes({name: 'John'}, function(err, p) {
|
||||||
|
should.exist(err);
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('updateOrCreate', function() {
|
describe('updateOrCreate', function() {
|
||||||
|
|
Loading…
Reference in New Issue