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.
23 lines
603 B
23 lines
603 B
'use strict';
|
|
var common = require('../common'),
|
|
assert = require('assert'),
|
|
Stream = require('stream'),
|
|
repl = require('repl');
|
|
|
|
// create a dummy stream that does nothing
|
|
var stream = new Stream();
|
|
stream.write = stream.pause = stream.resume = function() {};
|
|
stream.readable = stream.writable = true;
|
|
|
|
var r = repl.start({
|
|
input: stream,
|
|
output: stream,
|
|
useGlobal: false
|
|
});
|
|
|
|
|
|
// ensure that the repl context gets its own "console" instance
|
|
assert(r.context.console);
|
|
|
|
// ensure that the repl console instance is not the global one
|
|
assert.notStrictEqual(r.context.console, console);
|
|
|