add test for readline putty support

This commit is contained in:
Johan Euphrosine 2010-08-23 19:21:27 +02:00 committed by Ryan Dahl
parent d9eb64928e
commit 51224f12ca

View File

@ -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');