18 lines
333 B
JavaScript
Raw Normal View History

module.exports = function(knex) {
2013-09-12 13:30:47 -04:00
describe('Updates', function () {
2013-09-13 10:24:39 -04:00
it('should handle updates', function() {
return knex('accounts')
2013-09-12 13:30:47 -04:00
.logMe()
.where('id', 1)
.update({
first_name: 'User',
last_name: 'Test',
email:'test100@example.com'
});
});
});
};