2016-04-01 22:25:16 +00:00
|
|
|
// Copyright IBM Corp. 2013,2016. All Rights Reserved.
|
|
|
|
// Node module: loopback-datasource-juggler
|
|
|
|
// This file is licensed under the MIT License.
|
|
|
|
// License text available at https://opensource.org/licenses/MIT
|
|
|
|
|
2013-04-06 10:57:12 +00:00
|
|
|
// This test written in mocha+should.js
|
2016-08-22 19:55:22 +00:00
|
|
|
'use strict';
|
2013-04-06 10:57:12 +00:00
|
|
|
var should = require('./init.js');
|
|
|
|
|
2013-07-16 18:48:37 +00:00
|
|
|
var loopbackData = require('../');
|
2013-03-24 22:25:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('loopback-datasource-juggler', function() {
|
|
|
|
it('should expose version', function() {
|
2014-01-24 17:09:53 +00:00
|
|
|
loopbackData.version.should.equal(require('../package.json').version);
|
|
|
|
});
|
2013-03-24 22:25:43 +00:00
|
|
|
});
|