Skip to content

Commit

Permalink
test: repl tab completion test
Browse files Browse the repository at this point in the history
It checks that `eval` is called with `.scope` as an input string.

PR-URL: #5534
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
santigimeno authored and Myles Borins committed Mar 30, 2016
1 parent f4ac952 commit 246a89f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions test/parallel/test-repl-eval-scope.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
'use strict';
const common = require('../common');
const assert = require('assert');
const repl = require('repl');

{
const stream = new common.ArrayStream();
const options = {
eval: common.mustCall((cmd, context) => {
assert.strictEqual(cmd, '.scope\n');
assert.deepStrictEqual(context, {animal: 'Sterrance'});
}),
input: stream,
output: stream,
terminal: true
};

const r = repl.start(options);
r.context = {animal: 'Sterrance'};

stream.emit('data', '\t');
stream.emit('.exit\n');
}

0 comments on commit 246a89f

Please sign in to comment.