summaryrefslogtreecommitdiffstats
path: root/src/testdir
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-01-24 22:42:37 +0100
committerBram Moolenaar <Bram@vim.org>2019-01-24 22:42:37 +0100
commit99531a7604ce89ba82f41cdb519669abb61f3df0 (patch)
tree1357331276f4ccd7b8d590252cabc1e8319736be /src/testdir
parent681b6bc86c8f60473854c0141935c07494528884 (diff)
patch 8.1.0817: ":=" command is not testedv8.1.0817
Problem: ":=" command is not tested. Solution: Add a test. (Dominique Pelle, closes #3859)
Diffstat (limited to 'src/testdir')
-rw-r--r--src/testdir/Make_all.mak1
-rw-r--r--src/testdir/test_alot.vim1
-rw-r--r--src/testdir/test_ex_equal.vim32
3 files changed, 34 insertions, 0 deletions
diff --git a/src/testdir/Make_all.mak b/src/testdir/Make_all.mak
index 39b6889112..5857a228f5 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 be665120b3..81873af2e6 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 0000000000..05ad276836
--- /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