forked from aniani/vim
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)
16 lines
178 B
VimL
16 lines
178 B
VimL
" Test for '' mark in an empty buffer
|
|
|
|
func Test_empty_buffer()
|
|
new
|
|
insert
|
|
a
|
|
b
|
|
c
|
|
d
|
|
.
|
|
call assert_equal(1, line("''"))
|
|
bwipe!
|
|
endfunc
|
|
|
|
" vim: shiftwidth=2 sts=2 expandtab
|