From 8ff94b21385a9406b8bc851917c6d8b0bf54b948 Mon Sep 17 00:00:00 2001 From: kazukazuinaina Date: Wed, 29 Jun 2022 00:41:19 +0900 Subject: [PATCH] [delete] vader.vim --- test/airline-themes.vader | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 test/airline-themes.vader diff --git a/test/airline-themes.vader b/test/airline-themes.vader deleted file mode 100644 index 253ef36..0000000 --- a/test/airline-themes.vader +++ /dev/null @@ -1,38 +0,0 @@ -# Make sure that theme and 5 basic modes don't throw an error -# Get list of all included themes -Execute (validate themes): - let themes = readfile('themes.txt') - call sort(themes) - - let err_proc = v:false - try - - for themePath in themes - - " Check all the basic modes and their modified counterparts - " This test only fails on exceptional cases - let theme = fnamemodify(themePath, ':t:r') - Log theme - execute('AirlineTheme ' . theme) - execute('source ' . themePath) - normal! i - normal! : - normal! R - normal! v - setlocal mod - normal! i - normal! : - normal! R - normal! v - setlocal nomod - - endfor - - catch - let err_proc = v:true - Log "Failed validation testing with exception:" - Log string(v:exception) - endtry - AirlineRefresh - - Assert !err_proc