mirror of
https://github.com/vim/vim.git
synced 2025-09-29 04:34:16 -04:00
patch 8.1.0817: ":=" command is not tested
Problem: ":=" command is not tested. Solution: Add a test. (Dominique Pelle, closes #3859)
This commit is contained in:
@@ -105,6 +105,7 @@ NEW_TESTS = \
|
|||||||
test_erasebackword \
|
test_erasebackword \
|
||||||
test_escaped_glob \
|
test_escaped_glob \
|
||||||
test_eval_stuff \
|
test_eval_stuff \
|
||||||
|
test_ex_equal \
|
||||||
test_ex_undo \
|
test_ex_undo \
|
||||||
test_ex_z \
|
test_ex_z \
|
||||||
test_exit \
|
test_exit \
|
||||||
|
@@ -10,6 +10,7 @@ source test_changedtick.vim
|
|||||||
source test_compiler.vim
|
source test_compiler.vim
|
||||||
source test_cursor_func.vim
|
source test_cursor_func.vim
|
||||||
source test_delete.vim
|
source test_delete.vim
|
||||||
|
source test_ex_equal.vim
|
||||||
source test_ex_undo.vim
|
source test_ex_undo.vim
|
||||||
source test_ex_z.vim
|
source test_ex_z.vim
|
||||||
source test_execute_func.vim
|
source test_execute_func.vim
|
||||||
|
32
src/testdir/test_ex_equal.vim
Normal file
32
src/testdir/test_ex_equal.vim
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
" Test Ex := command.
|
||||||
|
|
||||||
|
func Test_ex_equal()
|
||||||
|
new
|
||||||
|
call setline(1, ["foo\tbar", "bar\tfoo"])
|
||||||
|
|
||||||
|
let a = execute('=')
|
||||||
|
call assert_equal("\n2", a)
|
||||||
|
|
||||||
|
let a = execute('=#')
|
||||||
|
call assert_equal("\n2\n 1 foo bar", a)
|
||||||
|
|
||||||
|
let a = execute('=l')
|
||||||
|
call assert_equal("\n2\nfoo^Ibar$", a)
|
||||||
|
|
||||||
|
let a = execute('=p')
|
||||||
|
call assert_equal("\n2\nfoo bar", a)
|
||||||
|
|
||||||
|
let a = execute('=l#')
|
||||||
|
call assert_equal("\n2\n 1 foo^Ibar$", a)
|
||||||
|
|
||||||
|
let a = execute('=p#')
|
||||||
|
call assert_equal("\n2\n 1 foo bar", a)
|
||||||
|
|
||||||
|
let a = execute('.=')
|
||||||
|
call assert_equal("\n1", a)
|
||||||
|
|
||||||
|
call assert_fails('3=', 'E16:')
|
||||||
|
call assert_fails('=x', 'E488:')
|
||||||
|
|
||||||
|
bwipe!
|
||||||
|
endfunc
|
@@ -787,6 +787,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
817,
|
||||||
/**/
|
/**/
|
||||||
816,
|
816,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user