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.
21 lines
409 B
21 lines
409 B
14 years ago
|
common = require("../common");
|
||
|
assert = common.assert
|
||
|
var events = require('events');
|
||
|
|
||
|
var e = new events.EventEmitter();
|
||
|
var times_hello_emited = 0;
|
||
|
|
||
|
e.once("hello", function (a, b) {
|
||
|
times_hello_emited++;
|
||
|
});
|
||
|
|
||
|
e.emit("hello", "a", "b");
|
||
|
e.emit("hello", "a", "b");
|
||
|
e.emit("hello", "a", "b");
|
||
|
e.emit("hello", "a", "b");
|
||
|
|
||
|
process.addListener("exit", function () {
|
||
|
assert.equal(1, times_hello_emited);
|
||
|
});
|
||
|
|