Browse Source

add test for readline putty support

v0.7.4-release
Johan Euphrosine 15 years ago
committed by Ryan Dahl
parent
commit
51224f12ca
  1. 8
      test/simple/test-readline.js

8
test/simple/test-readline.js

@ -16,6 +16,10 @@ var key = {
rxvt: {
home: [27, 91, 55],
end: [27, 91, 56]
},
putty: {
home: [27, 91, 49, 126],
end: [27, 91, 52, 126]
}
};
@ -49,6 +53,10 @@ rl.write(key.gnome.home);
assert.equal(0, rl.cursor);
rl.write(key.gnome.end);
assert.equal(3, rl.cursor);
rl.write(key.putty.home);
assert.equal(0, rl.cursor);
rl.write(key.putty.end);
assert.equal(3, rl.cursor);
rl = readlineFakeStream();
rl.write('foo bar.hop/zoo');

Loading…
Cancel
Save