feat: add compile vim from source zunit test (#232)

Signed-off-by: Vladislav Doster <mvdoster@gmail.com>
This commit is contained in:
vladislav doster 2022-04-27 19:18:06 -05:00 committed by GitHub
parent 630f21f167
commit 126528ccd5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,6 +21,14 @@
local tree="$ZPFX/bin/tree"; assert $tree is_executable
$tree -v; assert $state equals 0
}
@test 'vim' {
run zinit light-mode for vim/vim
zinit cd vim/vim
run ./configure --prefix=$ZPFX && make PREFIX=$ZPFX install
assert $state equals 0
local vim="$ZPFX/bin/vim"; assert $vim is_executable
$vim --version; assert $state equals 0
}
# @test 'zsh_bin' {
# run zinit as'null' sbin'bin/zsh' for @romkatv/zsh-bin
# assert $state equals 0