Mercurial > vim
view src/testdir/test_unlet.vim @ 13440:22439cdda382 v8.0.1594
patch 8.0.1594: :conform qall not tested with active terminal window
commit https://github.com/vim/vim/commit/435acdb88c849c6bac44ef30f24f29618b36af50
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Mar 10 20:51:25 2018 +0100
patch 8.0.1594: :conform qall not tested with active terminal window
Problem: :conform qall not tested with active terminal window.
Solution: Add a test.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 10 Mar 2018 21:00:07 +0100 |
parents | 8bff367672a4 |
children | e4d5726e1678 |
line wrap: on
line source
" Tests for :unlet func Test_read_only() " these caused a crash call assert_fails('unlet count', 'E795:') call assert_fails('unlet errmsg', 'E795:') endfunc func Test_existing() let does_exist = 1 call assert_true(exists('does_exist')) unlet does_exist call assert_false(exists('does_exist')) endfunc func Test_not_existing() unlet! does_not_exist call assert_fails('unlet does_not_exist', 'E108:') endfunc func Test_unlet_fails() call assert_fails('unlet v:["count"]', 'E46:') endfunc