view src/testdir/test_cmdline.vim @ 9424:fd4e6d944f4a v7.4.1993

commit https://github.com/vim/vim/commit/6bb450145e96d7b182769fd9502a267da72667ec Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jul 7 15:11:19 2016 +0200 patch 7.4.1993 Problem: Not all TRUE and FALSE arguments are tested. Solution: Add a few more tests.
author Christian Brabandt <cb@256bit.org>
date Thu, 07 Jul 2016 15:15:06 +0200
parents f92cfcd7fda2
children cdffa812f9d1
line wrap: on
line source

" 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