xref: /vim-8.2.3635/src/testdir/test_excmd.vim (revision fcfe1a9b)
1" Tests for various Ex commands.
2
3func Test_ex_delete()
4  new
5  call setline(1, ['a', 'b', 'c'])
6  2
7  " :dl is :delete with the "l" flag, not :dlist
8  .dl
9  call assert_equal(['a', 'c'], getline(1, 2))
10endfunc
11