1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-08 12:01:21 +02:00
zsh/Test/compgentest

15 lines
288 B
Text

comptestinit () {
setopt extendedglob
[[ -d $ZTST_testdir/Modules/zsh ]] && module_path=( $ZTST_testdir/Modules )
zmodload -i zsh/parameter || return $?
autoload -Uz bashcompinit || return $?
bashcompinit || return $?
}
comptest () {
compgen -W 'abc abe ab a def' ab
}