blob: f5ce979208652ba188b0a69a113321cfbad47d6b [file] [log] [blame]
Bram Moolenaar94f82cb2019-07-24 22:30:27 +02001" 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