node/test/simple/test-global.js

17 lines
482 B
JavaScript
Raw Normal View History

2010-08-18 23:47:36 +08:00
common = require("../common");
assert = common.assert
baseFoo = "foo";
global.baseBar = "bar";
assert.equal("foo", global.baseFoo, "x -> global.x in base level not working");
assert.equal("bar", baseBar, "global.x -> x in base level not working");
var module = require("../fixtures/global/plain"),
fooBar = module.fooBar();
assert.equal("foo", fooBar.foo, "x -> global.x in sub level not working");
assert.equal("bar", fooBar.bar, "global.x -> x in sub level not working");