feat(connection): migrate to pull-streams

This commit is contained in:
dignifiedquire
2016-08-09 12:16:16 +02:00
committed by David Dias
parent d4d6d55f37
commit ed5727a0fe
7 changed files with 44 additions and 48 deletions

10
test/base-test.js Normal file
View File

@ -0,0 +1,10 @@
'use strict'
module.exports.all = function (test, common) {
test('a test', function (t) {
common.setup(test, function (err, conn) {
t.ifError(err)
t.end()
})
})
}