features/test/common-utils/test.sh

18 lines
456 B
Bash
Raw Normal View History

2022-05-25 23:11:44 +03:00
#!/bin/bash
2022-05-13 03:07:22 +03:00
2022-05-25 23:11:44 +03:00
set -e
2022-05-13 03:07:22 +03:00
2022-05-25 23:11:44 +03:00
# Optional: Import test library
source dev-container-features-test-lib
2022-05-13 03:07:22 +03:00
2022-05-25 23:11:44 +03:00
# Definition specific tests
check "jq" jq --version
check "curl" curl --version
check "git" git --version
check "zsh" zsh --version
check "ps" ps --version
check "Oh My Zsh! theme" test -e $HOME/.oh-my-zsh/custom/themes/devcontainers.zsh-theme
check "zsh theme symlink" test -e $HOME/.oh-my-zsh/custom/themes/codespaces.zsh-theme
2022-05-13 03:07:22 +03:00
2022-05-25 23:11:44 +03:00
# Report result
reportResults