2015-09-15 16:50:58 +01:00

10 lines
202 B
JavaScript

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