Add missing test/model file

This commit is contained in:
Ritchie Martori 2014-05-02 18:12:50 -07:00
parent 918596f035
commit 1c7527ae3d
1 changed files with 13 additions and 0 deletions

13
test/model.test.js Normal file
View File

@ -0,0 +1,13 @@
var async = require('async');
var loopback = require('../');
var ACL = loopback.ACL;
var Change = loopback.Change;
var defineModelTestsWithDataSource = require('./util/model-tests');
describe('Model', function() {
defineModelTestsWithDataSource({
dataSource: {
connector: loopback.Memory
}
});
});