10 lines
202 B
JavaScript
Raw Normal View History

2015-09-15 16:50:58 +01:00
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()
})
})
}