Mercurial > vim
view src/testdir/test_ex_equal.vim @ 19465:07627d1b4d8c v8.2.0290
patch 8.2.0290: running individual test differs from all tests
Commit: https://github.com/vim/vim/commit/85683ec620be199d63af3b0542a03eeb72b08fb6
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Feb 20 22:35:02 2020 +0100
patch 8.2.0290: running individual test differs from all tests
Problem: Running individual test differs from all tests.
Solution: Pass on environment variables. (Yee Cheng Chin, closes https://github.com/vim/vim/issues/5672)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 20 Feb 2020 22:45:03 +0100 |
parents | a4882149b661 |
children | 08940efa6b4e |
line wrap: on
line source
" 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