diff src/testdir/test_options.vim @ 16204:e49b0957a0c7 v8.1.1107

patch 8.1.1107: no test for 'visualbell' commit https://github.com/vim/vim/commit/b4e6a2d07510e18e6720d6b2ee0b029f95430964 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Apr 3 21:53:33 2019 +0200 patch 8.1.1107: no test for 'visualbell' Problem: No test for 'visualbell'. Solution: Add a test.
author Bram Moolenaar <Bram@vim.org>
date Wed, 03 Apr 2019 22:00:05 +0200
parents 676069de7214
children d302c496e98b
line wrap: on
line diff
--- a/src/testdir/test_options.vim
+++ b/src/testdir/test_options.vim
@@ -536,5 +536,10 @@ func Test_writedelay()
   call assert_inrange(30 * 0.01, 999.0, elapsed)
 
   bwipe!
-  delfunc ChangeText
 endfunc
+
+func Test_visualbell()
+  set visualbell
+  call assert_beeps('normal 0h')
+  set novisualbell
+endfunc