diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-01-24 22:42:37 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-01-24 22:42:37 +0100 |
commit | 99531a7604ce89ba82f41cdb519669abb61f3df0 (patch) | |
tree | 1357331276f4ccd7b8d590252cabc1e8319736be | |
parent | 681b6bc86c8f60473854c0141935c07494528884 (diff) | |
download | vim-git-99531a7604ce89ba82f41cdb519669abb61f3df0.tar.gz |
patch 8.1.0817: ":=" command is not testedv8.1.0817
Problem: ":=" command is not tested.
Solution: Add a test. (Dominique Pelle, closes #3859)
-rw-r--r-- | src/testdir/Make_all.mak | 1 | ||||
-rw-r--r-- | src/testdir/test_alot.vim | 1 | ||||
-rw-r--r-- | src/testdir/test_ex_equal.vim | 32 | ||||
-rw-r--r-- | src/version.c | 2 |
4 files changed, 36 insertions, 0 deletions
diff --git a/src/testdir/Make_all.mak b/src/testdir/Make_all.mak index 39b688911..5857a228f 100644 --- a/src/testdir/Make_all.mak +++ b/src/testdir/Make_all.mak @@ -105,6 +105,7 @@ NEW_TESTS = \ test_erasebackword \ test_escaped_glob \ test_eval_stuff \ + test_ex_equal \ test_ex_undo \ test_ex_z \ test_exit \ diff --git a/src/testdir/test_alot.vim b/src/testdir/test_alot.vim index be665120b..81873af2e 100644 --- a/src/testdir/test_alot.vim +++ b/src/testdir/test_alot.vim @@ -10,6 +10,7 @@ source test_changedtick.vim source test_compiler.vim source test_cursor_func.vim source test_delete.vim +source test_ex_equal.vim source test_ex_undo.vim source test_ex_z.vim source test_execute_func.vim diff --git a/src/testdir/test_ex_equal.vim b/src/testdir/test_ex_equal.vim new file mode 100644 index 000000000..05ad27683 --- /dev/null +++ b/src/testdir/test_ex_equal.vim @@ -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 diff --git a/src/version.c b/src/version.c index 1cd591ffb..532b449dd 100644 --- a/src/version.c +++ b/src/version.c @@ -788,6 +788,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 817, +/**/ 816, /**/ 815, |