Bram Moolenaar | ae3150e | 2016-06-11 23:22:36 +0200 | [diff] [blame] | 1 | " Tests for editing the command line. |
| 2 | |
| 3 | func Test_complete_tab() |
| 4 | call writefile(['testfile'], 'Xtestfile') |
| 5 | call feedkeys(":e Xtest\t\r", "tx") |
| 6 | call assert_equal('testfile', getline(1)) |
| 7 | call delete('Xtestfile') |
| 8 | endfunc |
| 9 | |
| 10 | func Test_complete_list() |
| 11 | " We can't see the output, but at least we check the code runs properly. |
| 12 | call feedkeys(":e test\<C-D>\r", "tx") |
| 13 | call assert_equal('test', expand('%:t')) |
| 14 | endfunc |
| 15 | |
| 16 | func Test_complete_wildmenu() |
| 17 | call writefile(['testfile1'], 'Xtestfile1') |
| 18 | call writefile(['testfile2'], 'Xtestfile2') |
| 19 | set wildmenu |
| 20 | call feedkeys(":e Xtest\t\t\r", "tx") |
| 21 | call assert_equal('testfile2', getline(1)) |
| 22 | |
| 23 | call delete('Xtestfile1') |
| 24 | call delete('Xtestfile2') |
| 25 | set nowildmenu |
| 26 | endfunc |