1 var parallel = require('../')
2 var test = require('tape')
4 test('empty tasks array', function (t) {
7 parallel([], function (err) {
12 test('empty tasks object', function (t) {
15 parallel({}, function (err) {
20 test('empty tasks array and no callback', function (t) {
22 t.pass('did not throw')
26 test('empty tasks object and no callback', function (t) {
28 t.pass('did not throw')