tests: check if we are able to use test db wrapper at all

This commit is contained in:
Denis Wolf
2013-10-30 01:47:27 +02:00
parent db22394976
commit 8ff656430d

10
tests/redis.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 RDB = require('../mocks/redismock');
});
});
});