9 lines
174 B
JavaScript
Raw Normal View History

2015-09-16 17:32:10 +01:00
module.exports.all = function (test, common) {
test('a test', function (t) {
common.setup(test, function (err, conn) {
t.ifError(err)
t.end()
})
})
}