summaryrefslogtreecommitdiff
path: root/node_modules/forever/node_modules/winston/test/cli-test.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/forever/node_modules/winston/test/cli-test.js')
-rw-r--r--node_modules/forever/node_modules/winston/test/cli-test.js40
1 files changed, 40 insertions, 0 deletions
diff --git a/node_modules/forever/node_modules/winston/test/cli-test.js b/node_modules/forever/node_modules/winston/test/cli-test.js
new file mode 100644
index 0000000..365fba3
--- /dev/null
+++ b/node_modules/forever/node_modules/winston/test/cli-test.js
@@ -0,0 +1,40 @@
+/*
+ * cli-test.js: Tests for the cli levels available in winston.
+ *
+ * (C) 2010 Charlie Robbins
+ * MIT LICENSE
+ *
+ */
+
+var path = require('path'),
+ vows = require('vows'),
+ assert = require('assert'),
+ winston = require('../lib/winston'),
+ helpers = require('./helpers');
+
+vows.describe('winston/logger/cli').addBatch({
+ "When an instance of winston.Logger": {
+ topic: function () {
+ return new winston.Logger({
+ transports: [
+ new winston.transports.Console()
+ ]
+ })
+ },
+ "the cli() method": {
+ "should set the appropriate values on the logger": function (logger) {
+ logger.cli();
+ assert.isTrue(logger.padLevels);
+ assert.isTrue(logger.transports.console.colorize);
+ assert.isFalse(logger.transports.console.timestamp);
+ Object.keys(winston.config.cli.levels).forEach(function (level) {
+ assert.isNumber(logger.levels[level]);
+ });
+
+ Object.keys(winston.config.cli.colors).forEach(function (color) {
+ assert.isString(winston.config.allColors[color]);
+ });
+ }
+ }
+ }
+}).export(module); \ No newline at end of file