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.
19 lines
570 B
19 lines
570 B
15 years ago
|
require("../common");
|
||
|
|
||
|
var Script = process.binding('evals').Script;
|
||
|
|
||
|
debug('run in a new empty context');
|
||
|
var context = Script.createContext();
|
||
|
var result = Script.runInContext('"passed";', context);
|
||
|
assert.equal('passed', result);
|
||
|
|
||
|
debug('create a new pre-populated context');
|
||
|
context = Script.createContext({'foo': 'bar', 'thing': 'lala'});
|
||
|
assert.equal('bar', context.foo);
|
||
|
assert.equal('lala', context.thing);
|
||
|
|
||
|
debug('test updating context');
|
||
|
result = Script.runInContext('var foo = 3;', context);
|
||
|
assert.equal(3, context.foo);
|
||
|
assert.equal('lala', context.thing);
|