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.
14 lines
264 B
14 lines
264 B
14 years ago
|
var common = require('../common');
|
||
|
var assert = require('assert');
|
||
15 years ago
|
|
||
14 years ago
|
var a;
|
||
14 years ago
|
setTimeout(function() {
|
||
|
a = require('../fixtures/a');
|
||
15 years ago
|
}, 50);
|
||
|
|
||
13 years ago
|
process.on('exit', function() {
|
||
14 years ago
|
assert.equal(true, 'A' in a);
|
||
|
assert.equal('A', a.A());
|
||
|
assert.equal('D', a.D());
|
||
15 years ago
|
});
|