tra-analysis/website/functions/node_modules/ascli/tests/test.js
2019-01-06 13:14:45 -06:00

11 lines
361 B
JavaScript

var cli = require("../ascli.js")("myapp");
cli.banner("staying straight".green.bold, "v1.0.0 through ascli");
cli.log("Hello world!".white.bold);
cli.log("...of ascli\n");
cli.log("Command line arguments".white.bold);
cli.log(cli.opt, cli.argv);
cli.banner("abcdefghijklmnopqrstuvwxyz 0123456789");
cli.ok("yep, that worked.");
cli.fail("nope, that didn't.");