mirror of
https://github.com/knex/knex.git
synced 2025-09-27 17:16:03 +00:00
15 lines
318 B
JavaScript
15 lines
318 B
JavaScript
![]() |
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);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
});
|
||
|
|
||
|
};
|