Latest Code

This commit is contained in:
Dobie Wollert
2015-04-06 03:28:20 -04:00
parent 966152a631
commit d3089dcd17
105 changed files with 8731 additions and 96 deletions

View File

@ -0,0 +1,17 @@
var helper = require('./helper/cluster-helper');
suite('concurrent increment', function() {
test('master only', function(cb) {
helper.run('do-concurrent-inc', true, 0, 4, cb);
});
test('four workers', function(cb) {
helper.run('do-concurrent-inc', false, 4, 4, cb);
});
test('master and four workers', function(cb) {
helper.run('do-concurrent-inc', true, 4, 4, cb);
});
});