removed redismock, added database mocked, fixed tests to work with dbal

This commit is contained in:
Baris Usakli
2013-12-06 13:21:21 -05:00
parent 6313a5eeb1
commit 0da141e7bc
8 changed files with 124 additions and 116 deletions

10
tests/database.js Normal file
View File

@@ -0,0 +1,10 @@
var assert = require('assert');
describe('Test database', function() {
it('should work', function(){
assert.doesNotThrow(function(){
var db = require('../mocks/databasemock');
});
});
});