Sfoglia il codice sorgente

tests: Skip when zsh/pcre is not available

pull/463/head
Matthew Martin 6 anni fa
parent
commit
2919679ee8
1 ha cambiato i file con 10 aggiunte e 6 eliminazioni
  1. +10
    -6
      highlighters/regexp/test-data/word-boundary.zsh

+ 10
- 6
highlighters/regexp/test-data/word-boundary.zsh Vedi File

@ -27,12 +27,16 @@
# vim: ft=zsh sw=2 ts=2 et
# -------------------------------------------------------------------------------------------------
setopt RE_MATCH_PCRE
if zmodload -s zsh/pcre; then
setopt RE_MATCH_PCRE
ZSH_HIGHLIGHT_REGEXP+=('\bsudo\b' 'fg=white,bold,bg=red')
ZSH_HIGHLIGHT_REGEXP+=('\bsudo\b' 'fg=white,bold,bg=red')
BUFFER='sudo ls'
BUFFER='sudo ls'
expected_region_highlight=(
"1 4 fg=white,bold,bg=red"
)
expected_region_highlight=(
"1 4 fg=white,bold,bg=red"
)
else
skip_test='Test requires zsh/pcre'
fi

Caricamento…
Annulla
Salva