blob: c083a1935c7f62fbc36e526be6ef61cca84c018f (
plain) (
tree)
|
|
if (module == require.main) {
return require('async_testing').run(__filename, process.ARGV);
}
module.exports = {
'test A': function(test) {
test.ok(true);
test.finish();
},
'test B': function(test) {
test.ok(true);
test.finish();
},
'test C': function(test) {
test.ok(true);
test.finish();
},
'test D': function(test) {
test.ok(true);
test.finish();
}
};
|