2015-09-15 19:36:44 +01:00

14 lines
256 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()
})
})
// test for:
// 1. dial and listen
// 2. close
}