Sha256: 00817e084715508583f0bea4d685f85d228907f0e74b3669ad7a4037200e6252
Contents?: true
Size: 1.22 KB
Versions: 21
Compression:
Stored size: 1.22 KB
Contents
/* * console-test.js: Tests for instances of the Console transport * * (C) 2010 Charlie Robbins * MIT LICENSE * */ var path = require('path'), vows = require('vows'), assert = require('assert'), winston = require('../../lib/winston'), helpers = require('../helpers'); var npmTransport = new (winston.transports.Console)(), syslogTransport = new (winston.transports.Console)({ levels: winston.config.syslog.levels }); vows.describe('winston/transports/console').addBatch({ "An instance of the Console Transport": { "with npm levels": { "should have the proper methods defined": function () { helpers.assertConsole(npmTransport); }, "the log() method": helpers.testNpmLevels(npmTransport, "should respond with true", function (ign, err, logged) { assert.isNull(err); assert.isTrue(logged); }) }, "with syslog levels": { "should have the proper methods defined": function () { helpers.assertConsole(syslogTransport); }, "the log() method": helpers.testSyslogLevels(syslogTransport, "should respond with true", function (ign, err, logged) { assert.isNull(err); assert.isTrue(logged); }) } } }).export(module);
Version data entries
21 entries across 21 versions & 2 rubygems