https://github.com/statsd/statsd
Raw File
Tip revision: d1f8b8f828e9614cc43d2e5803d05bdf21ac9ce5 authored by Daniel Schauenberg on 14 May 2012, 22:56:51 UTC
bump to v0.2.1
Tip revision: d1f8b8f
run_tests.sh
#!/usr/bin/env node
try {
    var reporter = require('nodeunit').reporters.default;
}
catch(e) {
    console.log("Cannot find nodeunit module.");
    console.log("Make sure to run 'npm install nodeunit'");
    process.exit();
}

process.chdir(__dirname);
reporter.run(['test/']);
back to top