Added node-modules

This commit is contained in:
Dobie Wollert
2014-09-14 07:04:16 -04:00
parent 663941bf57
commit 6a92348cf5
4870 changed files with 670395 additions and 0 deletions

View File

@ -0,0 +1,12 @@
var helper = require('./helper.js');
helper.create_test('no-cluster-logrotate', 'no-cluster-logrotate/test1.js', 'no-cluster-logrotate/output2', function() {
helper.logrotate(function(logrotate) {
setTimeout(function() {
helper.check_file("no-cluster-logrotate/output1");
helper.launch(logrotate, ['-f', 'no-cluster-logrotate/logrotate.conf', '-s', '/tmp/s'], null, function(code) {});
}, 200);
});
}, function() {
helper.check_file("no-cluster-logrotate/output1", "test.log.1");
}).export(module);