This commit is contained in:
David Dias
2015-09-16 17:32:10 +01:00
parent a422c81b90
commit e1b7badc2d
4 changed files with 93 additions and 2 deletions

8
tests/base-test.js Normal file
View File

@ -0,0 +1,8 @@
module.exports.all = function (test, common) {
test('a test', function (t) {
common.setup(test, function (err, conn) {
t.ifError(err)
t.end()
})
})
}