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.
31 lines
637 B
31 lines
637 B
15 years ago
|
process.mixin(require("../common"));
|
||
15 years ago
|
var events = require('events');
|
||
15 years ago
|
|
||
15 years ago
|
var e = new events.EventEmitter();
|
||
15 years ago
|
|
||
|
var events_new_listener_emited = [];
|
||
|
var times_hello_emited = 0;
|
||
|
|
||
15 years ago
|
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
|
||
15 years ago
|
assert.equal("a", a);
|
||
|
assert.equal("b", b);
|
||
15 years ago
|
});
|
||
|
|
||
|
puts("start");
|
||
|
|
||
15 years ago
|
e.emit("hello", "a", "b");
|
||
15 years ago
|
|
||
15 years ago
|
process.addListener("exit", function () {
|
||
15 years ago
|
assert.deepEqual(["hello"], events_new_listener_emited);
|
||
|
assert.equal(1, times_hello_emited);
|
||
15 years ago
|
});
|
||
15 years ago
|
|
||
|
|