friends-irc
Version:
Connects IRC and Friends channels by sending messages back and forth.
14 lines (10 loc) • 291 B
JavaScript
var util = require('util')
var events = require('events')
var sinon = require('sinon')
function ChannelStub () {
this.name = 'swarm'
this.is_channel = true
}
util.inherits(ChannelStub, events.EventEmitter)
ChannelStub.prototype.postMessage = sinon.stub()
module.exports = ChannelStub