2015-09-16 17:32:10 +01:00

9 lines
174 B
JavaScript

module.exports.all = function (test, common) {
test('a test', function (t) {
common.setup(test, function (err, conn) {
t.ifError(err)
t.end()
})
})
}