This commit is contained in:
Pavel Djundik 2016-03-08 18:01:56 +02:00 committed by Maxime Poulin
parent 2244dda566
commit 470b0a2c4f
2 changed files with 7 additions and 7 deletions

View file

@ -26,7 +26,7 @@ describe("Link plugin", function() {
});
this.irc.createMessage({
message: "http://localhost:9002/basic"
msg: "http://localhost:9002/basic"
});
this.irc.once("toggle", function(data) {

View file

@ -4,7 +4,7 @@ var _ = require("lodash");
var express = require("express");
function MockClient(opts) {
this.me = "test-user";
this.user = {nick: "test-user"};
for (var k in opts) {
this[k] = opts[k];
@ -15,12 +15,12 @@ util.inherits(MockClient, EventEmitter);
MockClient.prototype.createMessage = function(opts) {
var message = _.extend({
message: "dummy message",
from: "test-user",
to: "test-channel"
msg: "dummy message",
nick: "test-user",
target: "#test-channel"
}, opts);
this.emit("message", message);
this.emit("privmsg", message);
};
module.exports = {
@ -30,7 +30,7 @@ module.exports = {
createNetwork: function() {
return {
channels: [{
name: "test-channel",
name: "#test-channel",
messages: []
}]
};