Sha256: 6bd2d15471a6ec206319e6a7e99274c08f95a8a4d58f231b436772f942e98f0c
Contents?: true
Size: 1.1 KB
Versions: 21
Compression:
Stored size: 1.1 KB
Contents
var path = require('path'), vows = require('vows'), assert = require('assert'), winston = require('../../lib/winston'), helpers = require('../helpers'); var npmTransport = new (winston.transports.Memory)(), syslogTransport = new (winston.transports.Memory)({ levels: winston.config.syslog.levels }); vows.describe('winston/transports/memory').addBatch({ "An instance of the Memory Transport": { "with npm levels": { "should have the proper methods defined": function () { helpers.assertMemory(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.assertMemory(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