Rename tests folder to test to follow standards

This commit is contained in:
HeeL
2016-09-28 09:56:41 +02:00
parent 157e9be6da
commit 4c6a75d85c
18 changed files with 1 additions and 1 deletions

21
test/database.js Normal file
View File

@@ -0,0 +1,21 @@
'use strict';
/*global require*/
var assert = require('assert'),
db = require('./mocks/databasemock');
describe('Test database', function() {
it('should work', function(){
assert.doesNotThrow(function(){
var db = require('./mocks/databasemock');
});
});
require('./database/keys');
require('./database/list');
require('./database/sets');
require('./database/hash');
require('./database/sorted');
});