From 126528ccd50e98c0e71f06971ae16aceb571fb97 Mon Sep 17 00:00:00 2001 From: vladislav doster <10052309+vladdoster@users.noreply.github.com> Date: Wed, 27 Apr 2022 19:18:06 -0500 Subject: [PATCH] feat: add compile vim from source zunit test (#232) Signed-off-by: Vladislav Doster --- tests/plugins.zunit | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/plugins.zunit b/tests/plugins.zunit index 71d5d5f7..a4f5953e 100755 --- a/tests/plugins.zunit +++ b/tests/plugins.zunit @@ -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