1
0
Fork 0
mirror of https://github.com/seejohnrun/haste-server.git synced 2024-11-01 11:31:22 +00:00
haste-server/node_modules/winston/test/transports/couchdb-test.js
2012-02-06 14:09:01 -05:00

47 lines
No EOL
1.1 KiB
JavaScript

/*
* couchdb-test.js: Tests for instances of the Couchdb transport
*
* (C) 2011 Max Ogden
* MIT LICENSE
*
*/
var path = require('path'),
vows = require('vows'),
fs = require('fs'),
http = require('http'),
assert = require('assert'),
winston = require('../../lib/winston'),
helpers = require('../helpers');
var couchdbTransport = new (winston.transports.Couchdb)({
"host": "localhost",
"port": 1337,
"db": "logs"
});
var server = http.createServer(function (req, res) {
res.end();
});
server.listen(1337);
vows.describe('winston/transports/couchdb').addBatch({
"An instance of the Couchdb Transport": {
"when passed valid options": {
"should have the proper methods defined": function () {
helpers.assertCouchdb(couchdbTransport);
},
"the log() method": helpers.testNpmLevels(couchdbTransport, "should respond with true", function (ign, err, logged) {
assert.isNull(err);
assert.isTrue(logged);
})
}
}
}).addBatch({
"When the tests are over": {
"the server should cleanup": function () {
server.close();
}
}
}).export(module);