aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/plugged/vim-airline-themes/test/airline-themes.vader
blob: ba46da42ad518724b1fac90576dfb10c12913c9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# 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