changeset 9280:f92cfcd7fda2 v7.4.1923

commit https://github.com/vim/vim/commit/ae3150ec8d9da4a244acffebea55416946ca23d3 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jun 11 23:22:36 2016 +0200 patch 7.4.1923 Problem: Command line editing is not tested much. Solution: Add tests for expanding the file name and 'wildmenu'.
author Christian Brabandt <cb@256bit.org>
date Sat, 11 Jun 2016 23:30:06 +0200
parents 09f1b8f9d1a9
children 3e4510f59e49
files src/testdir/Make_all.mak src/testdir/test_cmdline.vim src/version.c
diffstat 3 files changed, 29 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/Make_all.mak
+++ b/src/testdir/Make_all.mak
@@ -169,6 +169,7 @@ NEW_TESTS = test_arglist.res \
 	    test_backspace_opt.res \
 	    test_cdo.res \
 	    test_channel.res \
+	    test_cmdline.res \
 	    test_hardcopy.res \
 	    test_history.res \
 	    test_increment.res \
new file mode 100644
--- /dev/null
+++ b/src/testdir/test_cmdline.vim
@@ -0,0 +1,26 @@
+" Tests for editing the command line.
+
+func Test_complete_tab()
+  call writefile(['testfile'], 'Xtestfile')
+  call feedkeys(":e Xtest\t\r", "tx")
+  call assert_equal('testfile', getline(1))
+  call delete('Xtestfile')
+endfunc
+
+func Test_complete_list()
+  " We can't see the output, but at least we check the code runs properly.
+  call feedkeys(":e test\<C-D>\r", "tx")
+  call assert_equal('test', expand('%:t'))
+endfunc
+
+func Test_complete_wildmenu()
+  call writefile(['testfile1'], 'Xtestfile1')
+  call writefile(['testfile2'], 'Xtestfile2')
+  set wildmenu
+  call feedkeys(":e Xtest\t\t\r", "tx")
+  call assert_equal('testfile2', getline(1))
+
+  call delete('Xtestfile1')
+  call delete('Xtestfile2')
+  set nowildmenu
+endfunc
--- a/src/version.c
+++ b/src/version.c
@@ -754,6 +754,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1923,
+/**/
     1922,
 /**/
     1921,