diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-02-21 17:43:53 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-21 17:43:53 +0800 |
commit | fec1181ecde75de1754f1d27a7ba7cbf2b9f43d6 (patch) | |
tree | 197f5c8025b5e564d73140f3782262d9ca3932c1 /src | |
parent | f0ee548137263a67e3d163b674f48e6e004210fb (diff) | |
download | rneovim-fec1181ecde75de1754f1d27a7ba7cbf2b9f43d6.tar.gz rneovim-fec1181ecde75de1754f1d27a7ba7cbf2b9f43d6.tar.bz2 rneovim-fec1181ecde75de1754f1d27a7ba7cbf2b9f43d6.zip |
test(legacy/prompt_buffer_spec): align script with oldtest more (#22354)
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_prompt_buffer.vim | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/nvim/testdir/test_prompt_buffer.vim b/src/nvim/testdir/test_prompt_buffer.vim index b8f6c5240c..b1288b4892 100644 --- a/src/nvim/testdir/test_prompt_buffer.vim +++ b/src/nvim/testdir/test_prompt_buffer.vim @@ -10,8 +10,7 @@ source screendump.vim func CanTestPromptBuffer() " We need to use a terminal window to be able to feed keys without leaving " Insert mode. - " Nvim's terminal implementation differs from Vim's - " CheckFeature terminal + CheckFeature terminal " TODO: make the tests work on MS-Windows CheckNotMSWindows @@ -56,7 +55,6 @@ func WriteScript(name) endfunc func Test_prompt_basic() - throw 'skipped: TODO' call CanTestPromptBuffer() let scriptName = 'XpromptscriptBasic' call WriteScript(scriptName) @@ -77,7 +75,6 @@ func Test_prompt_basic() endfunc func Test_prompt_editing() - throw 'skipped: TODO' call CanTestPromptBuffer() let scriptName = 'XpromptscriptEditing' call WriteScript(scriptName) @@ -108,7 +105,6 @@ func Test_prompt_editing() endfunc func Test_prompt_switch_windows() - throw 'skipped: TODO' call CanTestPromptBuffer() let scriptName = 'XpromptSwitchWindows' call WriteScript(scriptName) @@ -226,7 +222,6 @@ func Test_prompt_buffer_getbufinfo() endfunc func Test_prompt_while_writing_to_hidden_buffer() - throw 'skipped: TODO' call CanTestPromptBuffer() CheckUnix |