coffea
Version:
event based and extensible nodejs irc client library with multi-network support
18 lines (15 loc) • 430 B
JavaScript
/*jslint node: true*/
/*jslint expr: true*/
/*global describe, it*/
;
var coffea = require('../..');
var Stream = require('stream').PassThrough;
var should = require('should');
describe('index.js', function() {
describe('version', function() {
it('should return coffea version', function() {
var client = coffea(null, false);
should.exist(client.version);
});
});
});