mirror of
https://github.com/vim/vim.git
synced 2025-10-02 05:04:20 -04:00
Problem: Various inconsistencies in test files. Solution: Add modelines where they were missing. Use Check commands instead of silently skipping over tests. Adjust indents and comments. (Ken Takata, closes #6695)
35 lines
678 B
VimL
35 lines
678 B
VimL
" 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
|
|
|
|
" vim: shiftwidth=2 sts=2 expandtab
|