features/test/azure-cli/install_bicep.sh

16 lines
305 B
Bash
Raw Normal View History

#!/bin/bash
set -e
# Import test library for `check` command
source dev-container-features-test-lib
# Check to make sure the user is vscode
check "user is vscode" whoami | grep vscode
# Bicep-specific tests
check "bicep" bicep --version
check "az bicep" az bicep version
# Report result
reportResults