changeset 15394:f20d90aeecaa v8.1.0705

patch 8.1.0705: :colorscheme isn't tested enough commit https://github.com/vim/vim/commit/6d4470b0e9aac76ae43be27a28447ea29767d77f Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jan 8 21:05:51 2019 +0100 patch 8.1.0705: :colorscheme isn't tested enough Problem: :colorscheme isn't tested enough Solution: Improve test coverage of :colorscheme. (Dominique Pelle, closes #3777) Remove unnecessary sleep.
author Bram Moolenaar <Bram@vim.org>
date Tue, 08 Jan 2019 21:15:05 +0100
parents f5c098048499
children 989d5000e18e
files src/testdir/test_gui.vim src/version.c
diffstat 2 files changed, 8 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_gui.vim
+++ b/src/testdir/test_gui.vim
@@ -42,10 +42,15 @@ func Test_colorscheme()
 
   colorscheme torte
   redraw!
-  sleep 200m
   call assert_equal('dark', &background)
   call assert_equal(1, g:before_colors)
   call assert_equal(2, g:after_colors)
+  call assert_equal("\ntorte", execute('colorscheme'))
+
+  let a = substitute(execute('hi Search'), "\n\\s\\+", ' ', 'g')
+  call assert_match("\nSearch         xxx term=reverse ctermfg=0 ctermbg=12 gui=bold guifg=Black guibg=Red", a)
+
+  call assert_fails('colorscheme does_not_exist', 'E185:')
 
   exec 'colorscheme' colorscheme_saved
   augroup TestColors
--- a/src/version.c
+++ b/src/version.c
@@ -800,6 +800,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    705,
+/**/
     704,
 /**/
     703,