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.
12 lines
238 B
12 lines
238 B
15 years ago
|
process.mixin(require("../common"));
|
||
16 years ago
|
|
||
|
setTimeout(function () {
|
||
15 years ago
|
a = require("../fixtures/a");
|
||
16 years ago
|
}, 50);
|
||
|
|
||
|
process.addListener("exit", function () {
|
||
15 years ago
|
assert.equal(true, "A" in a);
|
||
|
assert.equal("A", a.A());
|
||
|
assert.equal("D", a.D());
|
||
16 years ago
|
});
|