1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 18:47:59 +01:00

Fix abbreviation tests (Luo Chunlei).

This commit is contained in:
Doug Kearns
2009-01-19 00:31:30 +11:00
parent ed9555d8d7
commit aaa36956c5

View File

@@ -37,9 +37,9 @@ let tests = [
{ cmds: [":!dir"],
verify: function () getMultilineOutput().length > 10 },
{ cmds: [":abbr VIMP vimperator labs", ":abbr"],
verify: function () getMultilineOutput().indexOf("vimperator labs") >= 0 },
verify: function () getOutput().indexOf("vimperator labs") >= 0 },
{ cmds: [":unabbr VIMP", ":abbr"],
verify: function () getMultilineOutput().indexOf("vimperator labs") == -1 },
verify: function () getOutput().indexOf("vimperator labs") == -1 },
{ cmds: [":bmarks"],
verify: function () getMultilineOutput().length > 100 },
{ cmds: [":echo \"test\""],