knex/test/unit/raw.js

15 lines
318 B
JavaScript
Raw Normal View History

2013-09-05 16:36:49 -04:00
module.exports = function(client) {
var Raw = require('../../lib/raw').Raw;
describe('Raw', function () {
it('has the Common methods mixed-in to the Builder.prototype', function() {
_.each(Common, function(val, key) {
expect(Builder.prototype[key]).to.equal(val);
});
});
});
};