From 8ff656430dd8bc845bf4e8135d7cee3c23f99cc5 Mon Sep 17 00:00:00 2001 From: Denis Wolf Date: Wed, 30 Oct 2013 01:47:27 +0200 Subject: [PATCH] tests: check if we are able to use test db wrapper at all --- tests/redis.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tests/redis.js diff --git a/tests/redis.js b/tests/redis.js new file mode 100644 index 0000000000..0af4f1a120 --- /dev/null +++ b/tests/redis.js @@ -0,0 +1,10 @@ +var assert = require('assert'); + + +describe('Test database', function() { + it('should work', function(){ + assert.doesNotThrow(function(){ + var RDB = require('../mocks/redismock'); + }); + }); +});