Gitiles
Code Review
Sign In
gerrit.omnirom.org
/
android_external_vim
/
fcfe1a9b8950b8b211ab3b24d84b17c6847ea43f
/
.
/
src
/
testdir
/
test_excmd.vim
blob: f5ce979208652ba188b0a69a113321cfbad47d6b [
file
] [
log
] [
blame
]
" Tests for various Ex commands.
func Test_ex_delete()
new
call setline(1, ['a', 'b', 'c'])
2
"
:
dl
is
:
delete
with
the
"l"
flag
,
not
:
dlist
.
dl
call assert_equal
([
'a'
,
'c'
],
getline
(
1
,
2
))
endfunc