!fixup Test cleanup

This commit is contained in:
Ritchie Martori 2014-05-07 07:44:00 -07:00
parent a3a6828709
commit 5bf1f76762
2 changed files with 1 additions and 8 deletions

View File

@ -70,7 +70,6 @@ describe('DataSource', function() {
function existsAndShared(scope, name, isRemoteEnabled) {
var fn = scope[name];
assert(fn, name + ' should be defined!');
console.log(name, fn.shared, isRemoteEnabled);
assert(!!fn.shared === isRemoteEnabled, name + ' ' + (isRemoteEnabled ? 'should' : 'should not') + ' be remote enabled');
}
});

View File

@ -5,7 +5,7 @@ var Change = loopback.Change;
var defineModelTestsWithDataSource = require('./util/model-tests');
var DataModel = loopback.DataModel;
describe('Model', function() {
describe('Model / DataModel', function() {
defineModelTestsWithDataSource({
dataSource: {
connector: loopback.Memory
@ -209,12 +209,6 @@ describe.onServer('Remote Methods', function(){
});
describe('Remote Method invoking context', function () {
// describe('ctx.user', function() {
// it("The remote user model calling the method remotely", function(done) {
// done(new Error('test not implemented'));
// });
// });
describe('ctx.req', function() {
it("The express ServerRequest object", function(done) {
var hookCalled = false;