https://github.com/statsd/statsd
Raw File
Tip revision: b0e0375cbe9a5457712070b663b4e00a982a8c61 authored by Daniel Schauenberg on 02 May 2012, 14:56:17 UTC
fix typo in ruby example
Tip revision: b0e0375
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