blob: 94a024abb8642ed25c0b3466bee53f5f256637d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
set -e
# Optional: Import test library
source dev-container-features-test-lib
# Definition specific tests
check "kube" kubectl
check "helm" helm version
# Report result
reportResults
|