14 lines
256 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()
})
})
2015-09-15 19:36:44 +01:00
// test for:
// 1. dial and listen
// 2. close
2015-09-15 16:50:58 +01:00
}