mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
605 B
29 lines
605 B
process.mixin(require("./common"));
|
|
|
|
var e = new process.EventEmitter();
|
|
|
|
var events_new_listener_emited = [];
|
|
var times_hello_emited = 0;
|
|
|
|
e.addListener("newListener", function (event, listener) {
|
|
puts("newListener: " + event);
|
|
events_new_listener_emited.push(event);
|
|
});
|
|
|
|
e.addListener("hello", function (a, b) {
|
|
puts("hello");
|
|
times_hello_emited += 1
|
|
assert.equal("a", a);
|
|
assert.equal("b", b);
|
|
});
|
|
|
|
puts("start");
|
|
|
|
e.emit("hello", "a", "b");
|
|
|
|
process.addListener("exit", function () {
|
|
assert.deepEqual(["hello"], events_new_listener_emited);
|
|
assert.equal(1, times_hello_emited);
|
|
});
|
|
|
|
|
|
|