2020-01-21 18:12:14 +00:00
|
|
|
// Copyright IBM Corp. 2013,2019. All Rights Reserved.
|
2016-04-01 22:25:16 +00:00
|
|
|
// Node module: loopback-datasource-juggler
|
|
|
|
// This file is licensed under the MIT License.
|
|
|
|
// License text available at https://opensource.org/licenses/MIT
|
|
|
|
|
2016-08-22 19:55:22 +00:00
|
|
|
'use strict';
|
2013-04-06 10:57:12 +00:00
|
|
|
module.exports = require('should');
|
2013-03-24 21:25:10 +00:00
|
|
|
|
2013-08-15 21:10:13 +00:00
|
|
|
/*
|
2014-01-24 17:09:53 +00:00
|
|
|
if (!process.env.TRAVIS) {
|
|
|
|
if (typeof __cov === 'undefined') {
|
|
|
|
process.on('exit', function () {
|
|
|
|
require('semicov').report();
|
|
|
|
});
|
|
|
|
}
|
2013-03-24 21:25:10 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
require('semicov').init('lib');
|
|
|
|
}
|
|
|
|
*/
|
2013-03-26 00:39:47 +00:00
|
|
|
|
2018-12-07 14:54:29 +00:00
|
|
|
const ModelBuilder = require('../').ModelBuilder;
|
|
|
|
const Schema = require('../').Schema;
|
2013-03-26 00:39:47 +00:00
|
|
|
|
|
|
|
if (!('getSchema' in global)) {
|
2016-04-01 11:48:17 +00:00
|
|
|
global.getSchema = function(connector, settings) {
|
2014-08-30 08:53:10 +00:00
|
|
|
return new Schema(connector || 'memory', settings);
|
2014-01-24 17:09:53 +00:00
|
|
|
};
|
2013-03-26 00:39:47 +00:00
|
|
|
}
|
2014-08-30 08:53:10 +00:00
|
|
|
|
|
|
|
if (!('getModelBuilder' in global)) {
|
2016-04-01 11:48:17 +00:00
|
|
|
global.getModelBuilder = function() {
|
2014-08-30 08:53:10 +00:00
|
|
|
return new ModelBuilder();
|
|
|
|
};
|
2015-02-17 16:41:46 +00:00
|
|
|
}
|
2016-09-16 12:54:17 +00:00
|
|
|
|
|
|
|
if (!('connectorCapabilities' in global)) {
|
2017-01-25 23:27:52 +00:00
|
|
|
global.connectorCapabilities = {
|
|
|
|
nestedProperty: true,
|
|
|
|
};
|
2016-09-16 12:54:17 +00:00
|
|
|
}
|